Go to the source code of this file.
Data Structures | |
| struct | passwd |
| the structure that contains user infos More... | |
| struct | addrinfo |
| missing winsock inet structure More... | |
Mingw32 missing types | |
| #define | uid_t int |
| #define | gid_t int |
Mingw32 missing functions | |
| #define | getuid() 1000 |
| #define | geteuid() 1000 |
| #define | usleep(s) Sleep(s) |
| passwd * | getpwuid (int id) |
| void | bzero (char *s, int l) |
| char * | index (const char *s, int i) |
Defines | |
| #define | EINPROGRESS WSAEWOULDBLOCK |
| #define | snprintf(a, b, c...) |
| #define | vsnprintf(a, b, c, d) |
Functions | |
| int | win_snprintf (const char *c,...) |
| int | win_vsnprintf (const char *format, va_list ap) |
> Matthew Miller
Definition in file win32_compatibility.h.
|
|
Definition at line 61 of file win32_compatibility.h. |
|
|
Definition at line 47 of file win32_compatibility.h. |
|
|
Definition at line 46 of file win32_compatibility.h. |
|
|
Definition at line 30 of file win32_compatibility.h. |
|
|
Value: (__extension__ \
({ \
int __result; \
if ( a == NULL && b == 0) \
__result = c99_snprintf(c); \
else \
__result = snprintf(a,b,c); \
__result; }))
Definition at line 77 of file win32_compatibility.h. |
|
|
Definition at line 29 of file win32_compatibility.h. |
|
|
Definition at line 58 of file win32_compatibility.h. |
|
|
Value: (__extension__ \
({ \
int __result; \
if ( a == NULL && b == 0) \
__result = c99_vsnprintf(c,d);\
else \
__result = vsnprintf(a,b,c,d); \
__result; }))
Definition at line 86 of file win32_compatibility.h. |
|
||||||||||||
|
|
|
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
1.3.6-20040222