1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#ifndef PORTABLE_H
#define PORTABLE_H
#include <stdio.h>
#include <sys/types.h>
#include <stdint.h>
#include "qcstring.h"
class Buf;
#if defined(_WIN32)
typedef __int64 portable_off_t;
#else
typedef off_t portable_off_t;
#endif
/** @file
* @brief Portable versions of functions that are platform dependent.
*/
namespace Portable
{
int system(const QCString &command,const QCString &args,bool commandHasConsole=true);
unsigned int pid();
QCString getenv(const QCString &variable);
void setenv(const QCString &variable,const QCString &value);
void unsetenv(const QCString &variable);
portable_off_t fseek(FILE *f,portable_off_t offset, int whence);
portable_off_t ftell(FILE *f);
FILE * fopen(const QCString &fileName,const QCString &mode);
int fclose(FILE *f);
void unlink(const QCString &fileName);
QCString pathSeparator();
QCString pathListSeparator();
const char * ghostScriptCommand();
const char * commandExtension();
bool fileSystemIsCaseSensitive();
FILE * popen(const QCString &name,const QCString &type);
int pclose(FILE *stream);
void sysTimerStart();
void sysTimerStop();
double getSysElapsedTime();
void sleep(int ms);
bool isAbsolutePath(const QCString &fileName);
void correct_path();
void setShortDir();
const char * strnstr(const char *haystack, const char *needle, size_t haystack_len);
const char * devNull();
bool checkForExecutable(const QCString &fileName);
size_t recodeUtf8StringToW(const QCString &inputStr,uint16_t **buf);
}
extern "C" {
void * portable_iconv_open(const char *tocode, const char *fromcode);
size_t portable_iconv (void *cd, const char** inbuf, size_t *inbytesleft,
char* * outbuf, size_t *outbytesleft);
int portable_iconv_close (void *cd);
}
#endif
|