3 /* Time-stamp: <01/08/01 20:48:08 keuchel@w2k> */
5 /* This file includes extracts from the celib-headers, because */
6 /* the celib-headers produces macro conflicts with defines in */
12 #include "celib_defs.h"
14 /* include local copies of celib headers... */
20 #ifndef START_EXTERN_C
23 # define START_EXTERN_C extern "C" {
24 # define END_EXTERN_C }
25 # define EXTERN_C extern "C"
27 # define START_EXTERN_C
46 XCE_EXPORT double xceatof(const char *);
47 XCE_EXPORT int xcetoupper(int c);
48 XCE_EXPORT int xcetolower(int c);
50 #define toupper xcetoupper
51 #define tolower xcetolower
53 XCE_EXPORT double atof(const char *);
56 XCE_EXPORT void XCEShowMessageA(const char *fmt, ...);
59 #define gmtime xcegmtime
60 #define localtime xcelocaltime
61 #define asctime xceasctime
62 /* #define utime xceutime */
63 #define futime xcefutime
64 #define ftime xceftime
65 #define ctime xcectime
66 #define gettimeofday xcegettimeofday
67 #define GetSystemTimeAsFileTime XCEGetSystemTimeAsFileTime
69 #define setuid xcesetuid
70 #define getuid xcegetuid
71 #define geteuid xcegeteuid
72 #define seteuid xceseteuid
74 #define setgid xcesetgid
75 #define getgid xcegetgid
76 #define getegid xcegetegid
77 #define setegid xcesetegid
79 XCE_EXPORT int xcechown(const char *filename, int owner, int group);
80 #define chown xcechown
82 XCE_EXPORT char *xcestrrchr(const char * string, int ch);
83 #define strrchr xcestrrchr
85 XCE_EXPORT void (*xcesignal(int, void (*)(int)))(int);
86 XCE_EXPORT int xceraise(int);
87 #define signal xcesignal
88 #define raise xceraise
90 XCE_EXPORT int xcecreat(const char *filename, int pmode);
91 XCE_EXPORT int xceopen(const char *fname, int mode, ...);
92 XCE_EXPORT int xceread(int fd, void *buf, int size);
93 XCE_EXPORT int xcewrite(int fd, void *buf, int size);
94 XCE_EXPORT int xceclose(int fd);
95 XCE_EXPORT off_t xcelseek(int fd, int off, int whence);
97 XCE_EXPORT char *xcestrupr(char *string);
98 XCE_EXPORT char *xcestrlwr(char *string);
99 #define strupr xcestrupr
100 #define strlwr xcestrlwr
102 XCE_EXPORT double xcestrtod(const char *s, char **errorptr);
103 XCE_EXPORT long xcestrtol(const char *s, char **errorptr, int base);
104 XCE_EXPORT unsigned long xcestrtoul(const char *s, char **errorptr, int base);
105 #define strtod xcestrtod
106 #define strtol xcestrtol
107 #define strtoul xcestrtoul
109 XCE_EXPORT int xcestrnicmp(const char *first, const char *last, size_t count);
110 #define strnicmp xcestrnicmp
112 XCE_EXPORT int xceumask(int mask);
113 #define umask xceumask
115 XCE_EXPORT int xceisatty(int fd);
116 #define isatty xceisatty
118 XCE_EXPORT int xcechsize(int fd, unsigned long size);
119 #define chsize xcechsize
121 XCE_EXPORT char *xcegetlogin();
122 #define getlogin xcegetlogin
124 XCE_EXPORT DWORD XCEAPI XCEGetModuleFileNameA(HMODULE hModule, LPTSTR lpName, DWORD nSize);
125 XCE_EXPORT HMODULE XCEAPI XCEGetModuleHandleA(const char *lpName);
126 XCE_EXPORT FARPROC XCEAPI XCEGetProcAddressA(HMODULE hMod, const char *name);
128 /* //////////////////////////////////////////////////////////////////// */
130 #define getgid xcegetgid
131 #define getegid xcegetegid
132 #define geteuid xcegeteuid
133 #define setgid xcesetgid
135 #define strupr xcestrupr
138 XCE_EXPORT BOOL XCEFreeEnvironmentStrings(LPCSTR buf);
139 #define GetEnvironmentStrings XCEGetEnvironmentStrings
140 #define FreeEnvironmentStrings XCEFreeEnvironmentStrings
142 void wce_hitreturn();