plibc.h | plibc.h | |||
---|---|---|---|---|
skipping to change at line 25 | skipping to change at line 25 | |||
You should have received a copy of the GNU Lesser General Public | You should have received a copy of the GNU Lesser General Public | |||
License along with this library; if not, write to the Free Softwa re | License along with this library; if not, write to the Free Softwa re | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1 307 USA | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1 307 USA | |||
*/ | */ | |||
/** | /** | |||
* @file include/plibc.h | * @file include/plibc.h | |||
* @brief PlibC header | * @brief PlibC header | |||
* @attention This file is usually not installed under Unix, | * @attention This file is usually not installed under Unix, | |||
* so ship it with your application | * so ship it with your application | |||
* @version $Revision: 69 $ | * @version $Revision$ | |||
*/ | */ | |||
#ifndef _PLIBC_H_ | #ifndef _PLIBC_H_ | |||
#define _PLIBC_H_ | #define _PLIBC_H_ | |||
#ifndef SIGALRM | #ifndef SIGALRM | |||
#define SIGALRM 14 | #define SIGALRM 14 | |||
#endif | #endif | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" | extern "C" { | |||
{ | ||||
#endif | #endif | |||
#include <stddef.h> | #include <stddef.h> | |||
#ifdef Q_OS_WIN32 | #ifdef Q_OS_WIN32 | |||
#define WINDOWS 1 | #define WINDOWS 1 | |||
#endif | #endif | |||
#define HAVE_PLIBC_FD 0 | #define HAVE_PLIBC_FD 0 | |||
#ifdef WINDOWS | #ifdef WINDOWS | |||
#if ENABLE_NLS | #if ENABLE_NLS | |||
#include "langinfo.h" | #include "langinfo.h" | |||
#endif | #endif | |||
#include <winsock2.h> | ||||
#include <ws2tcpip.h> | #include <ws2tcpip.h> | |||
#include <windows.h> | #include <windows.h> | |||
#include <sys/types.h> | #include <sys/types.h> | |||
#include <time.h> | #include <time.h> | |||
#include <stdio.h> | #include <stdio.h> | |||
#include <sys/types.h> | #include <sys/types.h> | |||
#include <sys/stat.h> | #include <sys/stat.h> | |||
#include <dirent.h> | #include <dirent.h> | |||
#include <errno.h> | #include <errno.h> | |||
#include <stdarg.h> | #include <stdarg.h> | |||
#define __BYTE_ORDER BYTE_ORDER | #define __BYTE_ORDER BYTE_ORDER | |||
#define __BIG_ENDIAN BIG_ENDIAN | #define __BIG_ENDIAN BIG_ENDIAN | |||
/* Conflicts with our definitions */ | /* Conflicts with our definitions */ | |||
#define __G_WIN32_H__ | #define __G_WIN32_H__ | |||
/* Convert LARGE_INTEGER to double */ | /* Convert LARGE_INTEGER to double */ | |||
#define Li2Double(x) ((double)((x).HighPart) * 4.294967296E9 + \ | #define Li2Double(x) ((double)((x).HighPart) * 4.294967296E9 + \ | |||
(double)((x).LowPart)) | (double)((x).LowPart)) | |||
#ifndef __MINGW64__ | ||||
struct stat64 | struct stat64 | |||
{ | { | |||
_dev_t st_dev; | _dev_t st_dev; | |||
_ino_t st_ino; | _ino_t st_ino; | |||
_mode_t st_mode; | _mode_t st_mode; | |||
short st_nlink; | short st_nlink; | |||
short st_uid; | short st_uid; | |||
short st_gid; | short st_gid; | |||
_dev_t st_rdev; | _dev_t st_rdev; | |||
__int64 st_size; | __int64 st_size; | |||
__time64_t st_atime; | __time64_t st_atime; | |||
__time64_t st_mtime; | __time64_t st_mtime; | |||
__time64_t st_ctime; | __time64_t st_ctime; | |||
}; | }; | |||
#endif | ||||
typedef unsigned int sa_family_t; | typedef unsigned int sa_family_t; | |||
struct sockaddr_un | struct sockaddr_un { | |||
{ | short sun_family; /*AF_UNIX*/ | |||
short sun_family; /*AF_UNIX */ | char sun_path[108]; /*path name */ | |||
char sun_path[108]; /*path name */ | }; | |||
}; | ||||
#ifndef pid_t | #ifndef pid_t | |||
#define pid_t DWORD | #define pid_t DWORD | |||
#endif | #endif | |||
#ifndef error_t | #ifndef error_t | |||
#define error_t int | #define error_t int | |||
#endif | #endif | |||
#ifndef WEXITSTATUS | #ifndef WEXITSTATUS | |||
#define WEXITSTATUS(status) (((status) & 0xff00) >> 8) | #define WEXITSTATUS(status) (((status) & 0xff00) >> 8) | |||
#endif | #endif | |||
#ifndef MSG_DONTWAIT | #ifndef MSG_DONTWAIT | |||
#define MSG_DONTWAIT 0 | #define MSG_DONTWAIT 0 | |||
#endif | #endif | |||
enum | enum | |||
{ | { | |||
_SC_PAGESIZE = 30, | _SC_PAGESIZE = 30, | |||
_SC_PAGE_SIZE = 30 | _SC_PAGE_SIZE = 30 | |||
}; | }; | |||
/* Thanks to the Cygwin project */ | /* Thanks to the Cygwin project */ | |||
#define ENOCSI 43 /* No CSI structure available */ | #define ENOCSI 43 /* No CSI structure available */ | |||
#define EL2HLT 44 /* Level 2 halted */ | #define EL2HLT 44 /* Level 2 halted */ | |||
#ifndef EDEADLK | #ifndef EDEADLK | |||
#define EDEADLK 45 /* Deadlock condition */ | #define EDEADLK 45 /* Deadlock condition */ | |||
#endif | #endif | |||
#ifndef ENOLCK | #ifndef ENOLCK | |||
#define ENOLCK 46 /* No record locks available */ | #define ENOLCK 46 /* No record locks available */ | |||
#endif | #endif | |||
#define EBADE 50 /* Invalid exchange */ | #define EBADE 50 /* Invalid exchange */ | |||
#define EBADR 51 /* Invalid request descriptor */ | #define EBADR 51 /* Invalid request descriptor */ | |||
#define EXFULL 52 /* Exchange full */ | #define EXFULL 52 /* Exchange full */ | |||
#define ENOANO 53 /* No anode */ | #define ENOANO 53 /* No anode */ | |||
#define EBADRQC 54 /* Invalid request code */ | #define EBADRQC 54 /* Invalid request code */ | |||
#define EBADSLT 55 /* Invalid slot */ | #define EBADSLT 55 /* Invalid slot */ | |||
#ifndef EDEADLOCK | #ifndef EDEADLOCK | |||
#define EDEADLOCK EDEADLK /* File locking deadlock error */ | #define EDEADLOCK EDEADLK /* File locking deadlock error */ | |||
#endif | #endif | |||
#define EBFONT 57 /* Bad font file fmt */ | #define EBFONT 57 /* Bad font file fmt */ | |||
#define ENOSTR 60 /* Device not a stream */ | #define ENOSTR 60 /* Device not a stream */ | |||
#define ENODATA 61 /* No data (for no delay io) */ | #define ENODATA 61 /* No data (for no delay io) */ | |||
#define ETIME 62 /* Timer expired */ | #define ETIME 62 /* Timer expired */ | |||
#define ENOSR 63 /* Out of streams resources */ | #define ENOSR 63 /* Out of streams resources */ | |||
#define ENONET 64 /* Machine is not on the network */ | #define ENONET 64 /* Machine is not on the network */ | |||
#define ENOPKG 65 /* Package not installed */ | #define ENOPKG 65 /* Package not installed */ | |||
#define EREMOTE 66 /* The object is remote */ | #define EREMOTE 66 /* The object is remote */ | |||
#define ENOLINK 67 /* The link has been severed */ | #define ENOLINK 67 /* The link has been severed */ | |||
#define EADV 68 /* Advertise error */ | #define EADV 68 /* Advertise error */ | |||
#define ESRMNT 69 /* Srmount error */ | #define ESRMNT 69 /* Srmount error */ | |||
#define ECOMM 70 /* Communication error on send */ | #define ECOMM 70 /* Communication error on send */ | |||
#define EPROTO 71 /* Protocol error */ | #define EPROTO 71 /* Protocol error */ | |||
#define EMULTIHOP 74 /* Multihop attempted */ | #define EMULTIHOP 74 /* Multihop attempted */ | |||
#define ELBIN 75 /* Inode is remote (not really error) */ | #define ELBIN 75 /* Inode is remote (not really error) */ | |||
#define EDOTDOT 76 /* Cross mount point (not really error) */ | #define EDOTDOT 76 /* Cross mount point (not really error) */ | |||
#define EBADMSG 77 /* Trying to read unreadable message */ | #define EBADMSG 77 /* Trying to read unreadable message */ | |||
#define ENOTUNIQ 80 /* Given log. name not unique */ | #define ENOTUNIQ 80 /* Given log. name not unique */ | |||
#define EBADFD 81 /* f.d. invalid for this operation */ | #define EBADFD 81 /* f.d. invalid for this operation */ | |||
#define EREMCHG 82 /* Remote address changed */ | #define EREMCHG 82 /* Remote address changed */ | |||
#define ELIBACC 83 /* Can't access a needed shared lib */ | #define ELIBACC 83 /* Can't access a needed shared lib */ | |||
#define ELIBBAD 84 /* Accessing a corrupted shared lib */ | #define ELIBBAD 84 /* Accessing a corrupted shared lib */ | |||
#define ELIBSCN 85 /* .lib section in a.out corrupted */ | #define ELIBSCN 85 /* .lib section in a.out corrupted */ | |||
#define ELIBMAX 86 /* Attempting to link in too many libs */ | #define ELIBMAX 86 /* Attempting to link in too many libs */ | |||
#define ELIBEXEC 87 /* Attempting to exec a shared library */ | #define ELIBEXEC 87 /* Attempting to exec a shared library */ | |||
#ifndef ENOSYS | #ifndef ENOSYS | |||
#define ENOSYS 88 /* Function not implemented */ | #define ENOSYS 88 /* Function not implemented */ | |||
#endif | #endif | |||
#define ENMFILE 89 /* No more files */ | #define ENMFILE 89 /* No more files */ | |||
#ifndef ENOTEMPTY | #ifndef ENOTEMPTY | |||
#define ENOTEMPTY 90 /* Directory not empty */ | #define ENOTEMPTY 90 /* Directory not empty */ | |||
#endif | #endif | |||
#ifndef ENAMETOOLONG | #ifndef ENAMETOOLONG | |||
#define ENAMETOOLONG 91 /* File or path name too long */ | #define ENAMETOOLONG 91 /* File or path name too long */ | |||
#endif | #endif | |||
#define ELOOP 92 /* Too many symbolic links */ | #define ELOOP 92 /* Too many symbolic links */ | |||
#define EOPNOTSUPP 95 /* Operation not supported on transport end | #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ | |||
point */ | #define EPFNOSUPPORT 96 /* Protocol family not supported */ | |||
#define EPFNOSUPPORT 96 /* Protocol family not supported */ | #define ECONNRESET 104 /* Connection reset by peer */ | |||
#define ECONNRESET 104 /* Connection reset by peer */ | #define ENOBUFS 105 /* No buffer space available */ | |||
#define ENOBUFS 105 /* No buffer space available */ | #define EAFNOSUPPORT 106 /* Address family not supported by protocol family | |||
#define EAFNOSUPPORT 106 /* Address family not supported by protocol | */ | |||
family */ | #define EPROTOTYPE 107 /* Protocol wrong type for socket */ | |||
#define EPROTOTYPE 107 /* Protocol wrong type for socket */ | #define ENOTSOCK 108 /* Socket operation on non-socket */ | |||
#define ENOTSOCK 108 /* Socket operation on non-socket */ | #define ENOPROTOOPT 109 /* Protocol not available */ | |||
#define ENOPROTOOPT 109 /* Protocol not available */ | #define ESHUTDOWN 110 /* Can't send after socket shutdown */ | |||
#define ESHUTDOWN 110 /* Can't send after socket shutdown */ | #define ECONNREFUSED 111 /* Connection refused */ | |||
#define ECONNREFUSED 111 /* Connection refused */ | #define EADDRINUSE 112 /* Address already in use */ | |||
#define EADDRINUSE 112 /* Address already in use */ | #define ECONNABORTED 113 /* Connection aborted */ | |||
#define ECONNABORTED 113 /* Connection aborted */ | #define ENETUNREACH 114 /* Network is unreachable */ | |||
#define ENETUNREACH 114 /* Network is unreachable */ | #define ENETDOWN 115 /* Network interface is not configured */ | |||
#define ENETDOWN 115 /* Network interface is not configured */ | ||||
#ifndef ETIMEDOUT | #ifndef ETIMEDOUT | |||
#define ETIMEDOUT 116 /* Connection timed out */ | #define ETIMEDOUT 116 /* Connection timed out */ | |||
#endif | #endif | |||
#define EHOSTDOWN 117 /* Host is down */ | #define EHOSTDOWN 117 /* Host is down */ | |||
#define EHOSTUNREACH 118 /* Host is unreachable */ | #define EHOSTUNREACH 118 /* Host is unreachable */ | |||
#define EINPROGRESS 119 /* Connection already in progress */ | #define EINPROGRESS 119 /* Connection already in progress */ | |||
#define EALREADY 120 /* Socket already connected */ | #define EALREADY 120 /* Socket already connected */ | |||
#define EDESTADDRREQ 121 /* Destination address required */ | #define EDESTADDRREQ 121 /* Destination address required */ | |||
#define EMSGSIZE 122 /* Message too long */ | #define EMSGSIZE 122 /* Message too long */ | |||
#define EPROTONOSUPPORT 123 /* Unknown protocol */ | #define EPROTONOSUPPORT 123 /* Unknown protocol */ | |||
#define ESOCKTNOSUPPORT 124 /* Socket type not supported */ | #define ESOCKTNOSUPPORT 124 /* Socket type not supported */ | |||
#define EADDRNOTAVAIL 125 /* Address not available */ | #define EADDRNOTAVAIL 125 /* Address not available */ | |||
#define ENETRESET 126 /* Connection aborted by network */ | #define ENETRESET 126 /* Connection aborted by network */ | |||
#define EISCONN 127 /* Socket is already connected */ | #define EISCONN 127 /* Socket is already connected */ | |||
#define ENOTCONN 128 /* Socket is not connected */ | #define ENOTCONN 128 /* Socket is not connected */ | |||
#define ETOOMANYREFS 129 /* Too many references: cannot splice */ | #define ETOOMANYREFS 129 /* Too many references: cannot splice */ | |||
#define EPROCLIM 130 /* Too many processes */ | #define EPROCLIM 130 /* Too many processes */ | |||
#define EUSERS 131 /* Too many users */ | #define EUSERS 131 /* Too many users */ | |||
#define EDQUOT 132 /* Disk quota exceeded */ | #define EDQUOT 132 /* Disk quota exceeded */ | |||
#define ESTALE 133 /* Unknown error */ | #define ESTALE 133 /* Unknown error */ | |||
#ifndef ENOTSUP | #ifndef ENOTSUP | |||
#define ENOTSUP 134 /* Not supported */ | #define ENOTSUP 134 /* Not supported */ | |||
#endif | #endif | |||
#define ENOMEDIUM 135 /* No medium (in tape drive) */ | #define ENOMEDIUM 135 /* No medium (in tape drive) */ | |||
#define ENOSHARE 136 /* No such host or network path */ | #define ENOSHARE 136 /* No such host or network path */ | |||
#define ECASECLASH 137 /* Filename exists with different case */ | #define ECASECLASH 137 /* Filename exists with different case */ | |||
#define EWOULDBLOCK EAGAIN /* Operation would block */ | #define EWOULDBLOCK EAGAIN /* Operation would block */ | |||
#define EOVERFLOW 139 /* Value too large for defined data type */ | #define EOVERFLOW 139 /* Value too large for defined data type */ | |||
#undef HOST_NOT_FOUND | #undef HOST_NOT_FOUND | |||
#define HOST_NOT_FOUND 1 | #define HOST_NOT_FOUND 1 | |||
#undef TRY_AGAIN | #undef TRY_AGAIN | |||
#define TRY_AGAIN 2 | #define TRY_AGAIN 2 | |||
#undef NO_RECOVERY | #undef NO_RECOVERY | |||
#define NO_RECOVERY 3 | #define NO_RECOVERY 3 | |||
#undef NO_ADDRESS | #undef NO_ADDRESS | |||
#define NO_ADDRESS 4 | #define NO_ADDRESS 4 | |||
#define PROT_READ 0x1 | #define PROT_READ 0x1 | |||
#define PROT_WRITE 0x2 | #define PROT_WRITE 0x2 | |||
#define MAP_SHARED 0x1 | #define MAP_SHARED 0x1 | |||
#define MAP_PRIVATE 0x2 /* unsupported */ | #define MAP_PRIVATE 0x2 /* unsupported */ | |||
#define MAP_FIXED 0x10 | #define MAP_FIXED 0x10 | |||
#define MAP_ANONYMOUS 0x20 /* unsupported */ | ||||
#define MAP_FAILED ((void *)-1) | #define MAP_FAILED ((void *)-1) | |||
struct statfs | #define MS_ASYNC 1 /* sync memory asynchronously */ | |||
{ | #define MS_INVALIDATE 2 /* invalidate the caches */ | |||
long f_type; /* type of filesystem (see below) */ | #define MS_SYNC 4 /* synchronous memory sync */ | |||
long f_bsize; /* optimal transfer block size */ | ||||
long f_blocks; /* total data blocks in file system */ | struct statfs | |||
long f_bfree; /* free blocks in fs */ | { | |||
long f_bavail; /* free blocks avail to non-superuser */ | long f_type; /* type of filesystem (see below) */ | |||
long f_files; /* total file nodes in file system */ | long f_bsize; /* optimal transfer block size */ | |||
long f_ffree; /* free file nodes in fs */ | long f_blocks; /* total data blocks in file system */ | |||
long f_fsid; /* file system id */ | long f_bfree; /* free blocks in fs */ | |||
long f_namelen; /* maximum length of filenames */ | long f_bavail; /* free blocks avail to non-superuser */ | |||
long f_spare[6]; /* spare for later */ | long f_files; /* total file nodes in file system */ | |||
}; | long f_ffree; /* free file nodes in fs */ | |||
long f_fsid; /* file system id */ | ||||
long f_namelen; /* maximum length of filenames */ | ||||
long f_spare[6]; /* spare for later */ | ||||
}; | ||||
extern const struct in6_addr in6addr_any; /* :: */ | extern const struct in6_addr in6addr_any; /* :: */ | |||
extern const struct in6_addr in6addr_loopback; /* ::1 */ | extern const struct in6_addr in6addr_loopback; /* ::1 */ | |||
/* Taken from the Wine project <http://www.winehq.org> | /* Taken from the Wine project <http://www.winehq.org> | |||
/wine/include/winternl.h */ | /wine/include/winternl.h */ | |||
enum SYSTEM_INFORMATION_CLASS | enum SYSTEM_INFORMATION_CLASS | |||
{ | { | |||
SystemBasicInformation = 0, | SystemBasicInformation = 0, | |||
Unknown1, | Unknown1, | |||
SystemPerformanceInformation = 2, | SystemPerformanceInformation = 2, | |||
SystemTimeOfDayInformation = 3, /* was SystemTimeInformation */ | SystemTimeOfDayInformation = 3, /* was SystemTimeInformation */ | |||
Unknown4, | Unknown4, | |||
SystemProcessInformation = 5, | SystemProcessInformation = 5, | |||
Unknown6, | Unknown6, | |||
Unknown7, | Unknown7, | |||
SystemProcessorPerformanceInformation = 8, | SystemProcessorPerformanceInformation = 8, | |||
Unknown9, | Unknown9, | |||
Unknown10, | Unknown10, | |||
SystemDriverInformation, | SystemDriverInformation, | |||
Unknown12, | Unknown12, | |||
Unknown13, | Unknown13, | |||
Unknown14, | Unknown14, | |||
Unknown15, | Unknown15, | |||
SystemHandleList, | SystemHandleList, | |||
Unknown17, | Unknown17, | |||
Unknown18, | Unknown18, | |||
Unknown19, | Unknown19, | |||
Unknown20, | Unknown20, | |||
SystemCacheInformation, | SystemCacheInformation, | |||
Unknown22, | Unknown22, | |||
SystemInterruptInformation = 23, | SystemInterruptInformation = 23, | |||
SystemExceptionInformation = 33, | SystemExceptionInformation = 33, | |||
SystemRegistryQuotaInformation = 37, | SystemRegistryQuotaInformation = 37, | |||
SystemLookasideInformation = 45 | SystemLookasideInformation = 45 | |||
}; | }; | |||
typedef struct | typedef struct | |||
{ | { | |||
LARGE_INTEGER IdleTime; | LARGE_INTEGER IdleTime; | |||
LARGE_INTEGER KernelTime; | LARGE_INTEGER KernelTime; | |||
LARGE_INTEGER UserTime; | LARGE_INTEGER UserTime; | |||
LARGE_INTEGER Reserved1[2]; | LARGE_INTEGER Reserved1[2]; | |||
ULONG Reserved2; | ULONG Reserved2; | |||
} SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION; | } SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION; | |||
#define sleep(secs) (Sleep(secs * 1000)) | #define sleep(secs) (Sleep(secs * 1000)) | |||
/*********************** statfs *****************************/ | /*********************** statfs *****************************/ | |||
/* fake block size */ | /* fake block size */ | |||
#define FAKED_BLOCK_SIZE 512 | #define FAKED_BLOCK_SIZE 512 | |||
/* linux-compatible values for fs type */ | /* linux-compatible values for fs type */ | |||
#define MSDOS_SUPER_MAGIC 0x4d44 | #define MSDOS_SUPER_MAGIC 0x4d44 | |||
#define NTFS_SUPER_MAGIC 0x5346544E | #define NTFS_SUPER_MAGIC 0x5346544E | |||
/*********************** End of statfs ***********************/ | /*********************** End of statfs ***********************/ | |||
#define SHUT_RDWR SD_BOTH | #define SHUT_RDWR SD_BOTH | |||
/* Operations for flock() */ | /* Operations for flock() */ | |||
#define LOCK_SH 1 /* shared lock */ | #define LOCK_SH 1 /* shared lock */ | |||
#define LOCK_EX 2 /* exclusive lock */ | #define LOCK_EX 2 /* exclusive lock */ | |||
#define LOCK_NB 4 /* or'd with one of the above to prevent | #define LOCK_NB 4 /* or'd with one of the above to prevent | |||
* blocking */ | blocking */ | |||
#define LOCK_UN 8 /* remove lock */ | #define LOCK_UN 8 /* remove lock */ | |||
/* Not supported under MinGW */ | /* Not supported under MinGW */ | |||
#define S_IRGRP 0 | #define S_IRGRP 0 | |||
#define S_IWGRP 0 | #define S_IWGRP 0 | |||
#define S_IROTH 0 | #define S_IROTH 0 | |||
#define S_IXGRP 0 | #define S_IXGRP 0 | |||
#define S_IWOTH 0 | #define S_IWOTH 0 | |||
#define S_IXOTH 0 | #define S_IXOTH 0 | |||
#define S_ISUID 0 | #define S_ISUID 0 | |||
#define S_ISGID 0 | #define S_ISGID 0 | |||
skipping to change at line 336 | skipping to change at line 338 | |||
#define SHUT_WR SD_SEND | #define SHUT_WR SD_SEND | |||
#define SHUT_RD SD_RECEIVE | #define SHUT_RD SD_RECEIVE | |||
#define SHUT_RDWR SD_BOTH | #define SHUT_RDWR SD_BOTH | |||
#define SIGKILL 9 | #define SIGKILL 9 | |||
#define SIGTERM 15 | #define SIGTERM 15 | |||
#define SetErrnoFromWinError(e) _SetErrnoFromWinError(e, __FILE__, __LINE__ ) | #define SetErrnoFromWinError(e) _SetErrnoFromWinError(e, __FILE__, __LINE__ ) | |||
BOOL _plibc_CreateShortcut (const char *pszSrc, const char *pszDest); | BOOL _plibc_CreateShortcut(const char *pszSrc, const char *pszDest); | |||
BOOL _plibc_DereferenceShortcut (char *pszShortcut); | BOOL _plibc_DereferenceShortcut(char *pszShortcut); | |||
char *plibc_ChooseDir (char *pszTitle, unsigned long ulFlags); | char *plibc_ChooseDir(char *pszTitle, unsigned long ulFlags); | |||
char *plibc_ChooseFile (char *pszTitle, unsigned long ulFlags); | char *plibc_ChooseFile(char *pszTitle, unsigned long ulFlags); | |||
long QueryRegistry (HKEY hMainKey, const char *pszKey, const char *pszSub | ||||
Key, | long QueryRegistry(HKEY hMainKey, const char *pszKey, const char *pszSubKey | |||
char *pszBuffer, long *pdLength); | , | |||
char *pszBuffer, long *pdLength); | ||||
BOOL __win_IsHandleMarkedAsBlocking (int hHandle); | long QueryRegistryW(HKEY hMainKey, const wchar_t *pszKey, const wchar_t *ps | |||
void __win_SetHandleBlockingMode (int s, BOOL bBlocking); | zSubKey, | |||
void __win_DiscardHandleBlockingMode (int s); | wchar_t *pszBuffer, long *pdLength); | |||
int _win_isSocketValid (int s); | ||||
int plibc_conv_to_win_path (const char *pszUnix, char *pszWindows); | BOOL __win_IsHandleMarkedAsBlocking(int hHandle); | |||
unsigned plibc_get_handle_count (); | void __win_SetHandleBlockingMode(int s, BOOL bBlocking); | |||
void __win_DiscardHandleBlockingMode(int s); | ||||
typedef void (*TPanicProc) (int, char *); | int _win_isSocketValid(int s); | |||
void plibc_set_panic_proc (TPanicProc proc); | int plibc_conv_to_win_path(const char *pszUnix, char *pszWindows); | |||
int plibc_conv_to_win_pathw(const wchar_t *pszUnix, wchar_t *pwszWindows); | ||||
int flock (int fd, int operation); | ||||
int fsync (int fildes); | int plibc_conv_to_win_pathwconv(const char *pszUnix, wchar_t *pwszWindows); | |||
int inet_pton (int af, const char *src, void *dst); | int plibc_conv_to_win_pathwconv_ex(const char *pszUnix, wchar_t *pszWindows | |||
int inet_pton4 (const char *src, u_char * dst, int pton); | , int derefLinks); | |||
unsigned plibc_get_handle_count(); | ||||
typedef void (*TPanicProc) (int, char *); | ||||
void plibc_set_panic_proc(TPanicProc proc); | ||||
int flock(int fd, int operation); | ||||
int fsync(int fildes); | ||||
int inet_pton(int af, const char *src, void *dst); | ||||
int inet_pton4(const char *src, u_char *dst, int pton); | ||||
#if USE_IPV6 | #if USE_IPV6 | |||
int inet_pton6 (const char *src, u_char * dst); | int inet_pton6(const char *src, u_char *dst); | |||
#endif | #endif | |||
int truncate (const char *fname, int distance); | int truncate(const char *fname, int distance); | |||
int statfs (const char *path, struct statfs *buf); | int statfs(const char *path, struct statfs *buf); | |||
const char *hstrerror (int err); | const char *hstrerror(int err); | |||
int mkstemp (char *tmplate); | int mkstemp(char *tmplate); | |||
char *strptime (const char *buf, const char *format, struct tm *tm); | char *strptime (const char *buf, const char *format, struct tm *tm); | |||
const char *inet_ntop (int af, const void *src, char *dst, size_t size); | const char *inet_ntop(int af, const void *src, char *dst, size_t size); | |||
struct tm *gmtime_r(const time_t *clock, struct tm *result); | ||||
int plibc_init (char *pszOrg, char *pszApp); | ||||
void plibc_shutdown (); | int plibc_init(char *pszOrg, char *pszApp); | |||
int plibc_initialized (); | void plibc_shutdown(); | |||
int plibc_conv_to_win_path_ex (const char *pszUnix, char *pszWindows, | int plibc_initialized(); | |||
int derefLinks); | ||||
void _SetErrnoFromWinError (long lWinError, char *pszCaller, int iLine); | void _SetErrnoFromWinError(long lWinError, char *pszCaller, int iLine); | |||
void SetErrnoFromWinsockError (long lWinError); | void SetErrnoFromWinsockError(long lWinError); | |||
void SetHErrnoFromWinError (long lWinError); | void SetHErrnoFromWinError(long lWinError); | |||
void SetErrnoFromHRESULT (HRESULT hRes); | void SetErrnoFromHRESULT(HRESULT hRes); | |||
int GetErrnoFromWinsockError (long lWinError); | int GetErrnoFromWinsockError(long lWinError); | |||
FILE *_win_fopen (const char *filename, const char *mode); | FILE *_win_fopen(const char *filename, const char *mode); | |||
DIR *_win_opendir (const char *dirname); | int _win_fclose(FILE *); | |||
int _win_open (const char *filename, int oflag, ...); | DIR *_win_opendir(const char *dirname); | |||
struct dirent *_win_readdir(DIR *dirp); | ||||
int _win_closedir(DIR *dirp); | ||||
int _win_open(const char *filename, int oflag, ...); | ||||
#ifdef ENABLE_NLS | #ifdef ENABLE_NLS | |||
char *_win_bindtextdomain (const char *domainname, const char *dirname); | char *_win_bindtextdomain(const char *domainname, const char *dirname); | |||
#endif | #endif | |||
int _win_chdir (const char *path); | int _win_chdir(const char *path); | |||
int _win_close (int fd); | int _win_close(int fd); | |||
int _win_creat (const char *path, mode_t mode); | int _win_creat(const char *path, mode_t mode); | |||
char *_win_ctime (const time_t * clock); | char *_win_ctime(const time_t *clock); | |||
char *_win_ctime_r (const time_t * clock, char *buf); | char *_win_ctime_r(const time_t *clock, char *buf); | |||
int _win_fstat (int handle, struct stat *buffer); | int _win_fstat(int handle, struct stat *buffer); | |||
int _win_ftruncate (int fildes, off_t length); | int _win_ftruncate(int fildes, off_t length); | |||
void _win_gettimeofday (struct timeval *tp, void *tzp); | void _win_gettimeofday(struct timeval *tp, void *tzp); | |||
int _win_kill (pid_t pid, int sig); | int _win_kill(pid_t pid, int sig); | |||
int _win_pipe (int *phandles); | int _win_pipe(int *phandles); | |||
int _win_rmdir (const char *path); | int _win_rmdir(const char *path); | |||
int _win_access (const char *path, int mode); | int _win_access( const char *path, int mode ); | |||
int _win_chmod (const char *filename, int pmode); | int _win_chmod(const char *filename, int pmode); | |||
char *realpath (const char *file_name, char *resolved_name); | char *realpath(const char *file_name, char *resolved_name); | |||
long _win_random (void); | long _win_random(void); | |||
void _win_srandom (unsigned int seed); | void _win_srandom(unsigned int seed); | |||
int _win_remove (const char *path); | int _win_remove(const char *path); | |||
int _win_rename (const char *oldname, const char *newname); | int _win_rename(const char *oldname, const char *newname); | |||
int _win_stat (const char *path, struct stat *buffer); | int _win_stat(const char *path, struct stat *buffer); | |||
int _win_stat64 (const char *path, struct stat64 *buffer); | int _win_stat64(const char *path, struct stat64 *buffer); | |||
long _win_sysconf (int name); | long _win_sysconf(int name); | |||
int _win_unlink (const char *filename); | int _win_unlink(const char *filename); | |||
int _win_write (int fildes, const void *buf, size_t nbyte); | int _win_write(int fildes, const void *buf, size_t nbyte); | |||
int _win_read (int fildes, void *buf, size_t nbyte); | int _win_read(int fildes, void *buf, size_t nbyte); | |||
size_t _win_fwrite (const void *buffer, size_t size, size_t count, | size_t _win_fwrite(const void *buffer, size_t size, size_t count, FILE *str | |||
FILE * stream); | eam); | |||
size_t _win_fread (void *buffer, size_t size, size_t count, FILE * stream | size_t _win_fread( void *buffer, size_t size, size_t count, FILE *stream ); | |||
); | int _win_symlink(const char *path1, const char *path2); | |||
int _win_symlink (const char *path1, const char *path2); | void *_win_mmap(void *start, size_t len, int access, int flags, int fd, | |||
void *_win_mmap (void *start, size_t len, int access, int flags, int fd, | unsigned long long offset); | |||
unsigned long long offset); | int _win_msync(void *start, size_t length, int flags); | |||
int _win_munmap (void *start, size_t length); | int _win_munmap(void *start, size_t length); | |||
int _win_lstat (const char *path, struct stat *buf); | int _win_lstat(const char *path, struct stat *buf); | |||
int _win_lstat64 (const char *path, struct stat64 *buf); | int _win_lstat64(const char *path, struct stat64 *buf); | |||
int _win_readlink (const char *path, char *buf, size_t bufsize); | int _win_readlink(const char *path, char *buf, size_t bufsize); | |||
int _win_accept (int s, struct sockaddr *addr, int *addrlen); | int _win_accept(int s, struct sockaddr *addr, int *addrlen); | |||
int _win_printf (const char *format, ...); | ||||
int _win_fprintf (FILE * f, const char *format, ...); | int _win_printf(const char *format,...); | |||
int _win_vprintf (const char *format, va_list ap); | int _win_wprintf(const wchar_t *format, ...); | |||
int _win_vfprintf (FILE * stream, const char *format, va_list arg_ptr); | ||||
int _win_vsprintf (char *dest, const char *format, va_list arg_ptr); | int _win_fprintf(FILE *f,const char *format,...); | |||
int _win_vsnprintf (char *str, size_t size, const char *format, | int _win_fwprintf(FILE *f,const wchar_t *format, ...); | |||
va_list arg_ptr); | ||||
int _win_snprintf (char *str, size_t size, const char *format, ...); | int _win_vprintf(const char *format, va_list ap); | |||
int _win_sprintf (char *dest, const char *format, ...); | int _win_vfwprintf(FILE *stream, const wchar_t *format, va_list arg_ptr); | |||
int _win_vsscanf (const char *str, const char *format, va_list arg_ptr); | ||||
int _win_sscanf (const char *str, const char *format, ...); | int _win_vfprintf(FILE *stream, const char *format, va_list arg_ptr); | |||
int _win_vfscanf (FILE * stream, const char *format, va_list arg_ptr); | int _win_vwprintf(const wchar_t *format, va_list ap); | |||
int _win_vscanf (const char *format, va_list arg_ptr); | ||||
int _win_scanf (const char *format, ...); | int _win_vsprintf(char *dest,const char *format, va_list arg_ptr); | |||
int _win_fscanf (FILE * stream, const char *format, ...); | int _win_vswprintf(wchar_t *dest, const wchar_t *format, va_list arg_ptr); | |||
pid_t _win_waitpid (pid_t pid, int *stat_loc, int options); | ||||
int _win_bind (int s, const struct sockaddr *name, int namelen); | int _win_vsnprintf(char* str, size_t size, const char *format, va_list arg_ | |||
int _win_connect (int s, const struct sockaddr *name, int namelen); | ptr); | |||
int _win_getpeername (int s, struct sockaddr *name, int *namelen); | int _win_vsnwprintf(wchar_t* wstr, size_t size, const wchar_t *format, va_l | |||
int _win_getsockname (int s, struct sockaddr *name, int *namelen); | ist arg_ptr); | |||
int _win_getsockopt (int s, int level, int optname, char *optval, | ||||
int *optlen); | int _win_snprintf(char *str,size_t size,const char *format,...); | |||
int _win_listen (int s, int backlog); | int _win_snwprintf(wchar_t *str, size_t size, const wchar_t *format, ...); | |||
int _win_recv (int s, char *buf, int len, int flags); | ||||
int _win_recvfrom (int s, void *buf, int len, int flags, | int _win_sprintf(char *dest,const char *format,...); | |||
struct sockaddr *from, int *fromlen); | int _win_swprintf(wchar_t *dest, const wchar_t *format, ...); | |||
int _win_select (int max_fd, fd_set * rfds, fd_set * wfds, fd_set * efds, | ||||
const struct timeval *tv); | int _win_vsscanf(const char* str, const char* format, va_list arg_ptr); | |||
int _win_send (int s, const char *buf, int len, int flags); | int _win_vswscanf(const wchar_t* wstr, const wchar_t* format, va_list arg_p | |||
int _win_sendto (int s, const char *buf, int len, int flags, | tr); | |||
const struct sockaddr *to, int tolen); | ||||
int _win_setsockopt (int s, int level, int optname, const void *optval, | int _win_sscanf(const char *str, const char *format, ...); | |||
int optlen); | int _win_swscanf(const wchar_t *wstr, const wchar_t *format, ...); | |||
int _win_shutdown (int s, int how); | ||||
int _win_socket (int af, int type, int protocol); | int _win_vfscanf(FILE *stream, const char *format, va_list arg_ptr); | |||
struct hostent *_win_gethostbyaddr (const char *addr, int len, int type); | int _win_vfwscanf(FILE *stream, const wchar_t *format, va_list arg_ptr); | |||
struct hostent *_win_gethostbyname (const char *name); | ||||
struct hostent *gethostbyname2 (const char *name, int af); | int _win_vscanf(const char *format, va_list arg_ptr); | |||
char *_win_strerror (int errnum); | int _win_vwscanf(const wchar_t *format, va_list arg_ptr); | |||
int IsWinNT (); | ||||
char *index (const char *s, int c); | int _win_scanf(const char *format, ...); | |||
int _win_wscanf(const wchar_t *format, ...); | ||||
int _win_fscanf(FILE *stream, const char *format, ...); | ||||
int _win_fwscanf(FILE *stream, const wchar_t *format, ...); | ||||
pid_t _win_waitpid(pid_t pid, int *stat_loc, int options); | ||||
int _win_bind(int s, const struct sockaddr *name, int namelen); | ||||
int _win_connect(int s,const struct sockaddr *name, int namelen); | ||||
int _win_getpeername(int s, struct sockaddr *name, | ||||
int *namelen); | ||||
int _win_getsockname(int s, struct sockaddr *name, | ||||
int *namelen); | ||||
int _win_getsockopt(int s, int level, int optname, char *optval, | ||||
int *optlen); | ||||
int _win_listen(int s, int backlog); | ||||
int _win_recv(int s, char *buf, int len, int flags); | ||||
int _win_recvfrom(int s, void *buf, int len, int flags, | ||||
struct sockaddr *from, int *fromlen); | ||||
int _win_select(int max_fd, fd_set * rfds, fd_set * wfds, fd_set * efds, | ||||
const struct timeval *tv); | ||||
int _win_send(int s, const char *buf, int len, int flags); | ||||
int _win_sendto(int s, const char *buf, int len, int flags, | ||||
const struct sockaddr *to, int tolen); | ||||
int _win_setsockopt(int s, int level, int optname, const void *optval, | ||||
int optlen); | ||||
int _win_shutdown(int s, int how); | ||||
int _win_socket(int af, int type, int protocol); | ||||
struct hostent *_win_gethostbyaddr(const char *addr, int len, int type); | ||||
struct hostent *_win_gethostbyname(const char *name); | ||||
struct hostent *gethostbyname2(const char *name, int af); | ||||
char *_win_strerror(int errnum); | ||||
int IsWinNT(); | ||||
char *index(const char *s, int c); | ||||
#if !HAVE_STRNDUP | #if !HAVE_STRNDUP | |||
char *strndup (const char *s, size_t n); | char *strndup (const char *s, size_t n); | |||
#endif | #endif | |||
#if !HAVE_STRNLEN | #if !HAVE_STRNLEN | |||
size_t strnlen (const char *str, size_t maxlen); | size_t strnlen (const char *str, size_t maxlen); | |||
#endif | #endif | |||
char *stpcpy (char *dest, const char *src); | char *stpcpy(char *dest, const char *src); | |||
char *strcasestr (const char *haystack_start, const char *needle_start); | char *strcasestr(const char *haystack_start, const char *needle_start); | |||
#ifndef __MINGW64__ | ||||
#define strcasecmp(a, b) stricmp(a, b) | #define strcasecmp(a, b) stricmp(a, b) | |||
#define wcscasecmp(a, b) wcsicmp(a, b) | ||||
#define strncasecmp(a, b, c) strnicmp(a, b, c) | #define strncasecmp(a, b, c) strnicmp(a, b, c) | |||
#define wcsncasecmp(a, b, c) wcsnicmp(a, b, c) | ||||
#endif /* WINDOWS */ | #endif | |||
#endif /* WINDOWS */ | ||||
#ifndef WINDOWS | #ifndef WINDOWS | |||
#define DIR_SEPARATOR '/' | #define DIR_SEPARATOR '/' | |||
#define DIR_SEPARATOR_STR "/" | #define DIR_SEPARATOR_STR "/" | |||
#define PATH_SEPARATOR ':' | #define PATH_SEPARATOR ':' | |||
#define PATH_SEPARATOR_STR ":" | #define PATH_SEPARATOR_STR ":" | |||
#define NEWLINE "\n" | #define NEWLINE "\n" | |||
#ifdef ENABLE_NLS | #ifdef ENABLE_NLS | |||
#define BINDTEXTDOMAIN(d, n) bindtextdomain(d, n) | #define BINDTEXTDOMAIN(d, n) bindtextdomain(d, n) | |||
#endif | #endif | |||
#define CREAT(p, m) creat(p, m) | #define CREAT(p, m) creat(p, m) | |||
#define PLIBC_CTIME(c) ctime(c) | #define PLIBC_CTIME(c) ctime(c) | |||
#define CTIME_R(c, b) ctime_r(c, b) | #define CTIME_R(c, b) ctime_r(c, b) | |||
#undef FOPEN | #undef FOPEN | |||
#define FOPEN(f, m) fopen(f, m) | #define FOPEN(f, m) fopen(f, m) | |||
#define FTRUNCATE(f, l) ftruncate(f, l) | #define FCLOSE(f) fclose(f) | |||
#define OPENDIR(d) opendir(d) | #define FTRUNCATE(f, l) ftruncate(f, l) | |||
#define OPEN open | #define OPENDIR(d) opendir(d) | |||
#define CHDIR(d) chdir(d) | #define CLOSEDIR(d) closedir(d) | |||
#define CLOSE(f) close(f) | #define READDIR(d) readdir(d) | |||
#define LSEEK(f, o, w) lseek(f, o, w) | #define OPEN open | |||
#define RMDIR(f) rmdir(f) | #define CHDIR(d) chdir(d) | |||
#define ACCESS(p, m) access(p, m) | #define CLOSE(f) close(f) | |||
#define CHMOD(f, p) chmod(f, p) | #define LSEEK(f, o, w) lseek(f, o, w) | |||
#define FSTAT(h, b) fstat(h, b) | #define RMDIR(f) rmdir(f) | |||
#define PLIBC_KILL(p, s) kill(p, s) | #define ACCESS(p, m) access(p, m) | |||
#define PIPE(h) pipe(h) | #define CHMOD(f, p) chmod(f, p) | |||
#define REMOVE(p) remove(p) | #define FSTAT(h, b) fstat(h, b) | |||
#define RENAME(o, n) rename(o, n) | #define PLIBC_KILL(p, s) kill(p, s) | |||
#define STAT(p, b) stat(p, b) | #define PIPE(h) pipe(h) | |||
#define STAT64(p, b) stat64(p, b) | #define REMOVE(p) remove(p) | |||
#define SYSCONF(n) sysconf(n) | #define RENAME(o, n) rename(o, n) | |||
#define UNLINK(f) unlink(f) | #define STAT(p, b) stat(p, b) | |||
#define WRITE(f, b, n) write(f, b, n) | #define STAT64(p, b) stat64(p, b) | |||
#define READ(f, b, n) read(f, b, n) | #define SYSCONF(n) sysconf(n) | |||
#define GN_FREAD(b, s, c, f) fread(b, s, c, f) | #define UNLINK(f) unlink(f) | |||
#define GN_FWRITE(b, s, c, f) fwrite(b, s, c, f) | #define WRITE(f, b, n) write(f, b, n) | |||
#define SYMLINK(a, b) symlink(a, b) | #define READ(f, b, n) read(f, b, n) | |||
#define MMAP(s, l, p, f, d, o) mmap(s, l, p, f, d, o) | #define GN_FREAD(b, s, c, f) fread(b, s, c, f) | |||
#define MUNMAP(s, l) munmap(s, l) | #define GN_FWRITE(b, s, c, f) fwrite(b, s, c, f) | |||
#define STRERROR(i) strerror(i) | #define SYMLINK(a, b) symlink(a, b) | |||
#define RANDOM() random() | #define MMAP(s, l, p, f, d, o) mmap(s, l, p, f, d, o) | |||
#define SRANDOM(s) srandom(s) | #define MKFIFO(p, m) mkfifo(p, m) | |||
#define READLINK(p, b, s) readlink(p, b, s) | #define MSYNC(s, l, f) msync(s, l, f) | |||
#define LSTAT(p, b) lstat(p, b) | #define MUNMAP(s, l) munmap(s, l) | |||
#define LSTAT64(p, b) lstat64(p, b) | #define STRERROR(i) strerror(i) | |||
#define PRINTF printf | #define RANDOM() random() | |||
#define FPRINTF fprintf | #define SRANDOM(s) srandom(s) | |||
#define VPRINTF(f, a) vprintf(f, a) | #define READLINK(p, b, s) readlink(p, b, s) | |||
#define VFPRINTF(s, f, a) vfprintf(s, f, a) | #define LSTAT(p, b) lstat(p, b) | |||
#define VSPRINTF(d, f, a) vsprintf(d, f, a) | #define LSTAT64(p, b) lstat64(p, b) | |||
#define VSNPRINTF(str, size, fmt, a) vsnprintf(str, size, fmt, a) | #define PRINTF printf | |||
#define _REAL_SNPRINTF snprintf | #define FPRINTF fprintf | |||
#define SPRINTF sprintf | #define VPRINTF(f, a) vprintf(f, a) | |||
#define VSSCANF(s, f, a) vsscanf(s, f, a) | #define VFPRINTF(s, f, a) vfprintf(s, f, a) | |||
#define SSCANF sscanf | #define VSPRINTF(d, f, a) vsprintf(d, f, a) | |||
#define VFSCANF(s, f, a) vfscanf(s, f, a) | #define VSNPRINTF(str, size, fmt, a) vsnprintf(str, size, fmt, a) | |||
#define VSCANF(f, a) vscanf(f, a) | #define _REAL_SNPRINTF snprintf | |||
#define SCANF scanf | #define SPRINTF sprintf | |||
#define FSCANF fscanf | #define VSSCANF(s, f, a) vsscanf(s, f, a) | |||
#define WAITPID(p, s, o) waitpid(p, s, o) | #define SSCANF sscanf | |||
#define ACCEPT(s, a, l) accept(s, a, l) | #define VFSCANF(s, f, a) vfscanf(s, f, a) | |||
#define BIND(s, n, l) bind(s, n, l) | #define VSCANF(f, a) vscanf(f, a) | |||
#define CONNECT(s, n, l) connect(s, n, l) | #define SCANF scanf | |||
#define GETPEERNAME(s, n, l) getpeername(s, n, l) | #define FSCANF fscanf | |||
#define GETSOCKNAME(s, n, l) getsockname(s, n, l) | #define WAITPID(p, s, o) waitpid(p, s, o) | |||
#define GETSOCKOPT(s, l, o, v, p) getsockopt(s, l, o, v, p) | #define ACCEPT(s, a, l) accept(s, a, l) | |||
#define LISTEN(s, b) listen(s, b) | #define BIND(s, n, l) bind(s, n, l) | |||
#define RECV(s, b, l, f) recv(s, b, l, f) | #define CONNECT(s, n, l) connect(s, n, l) | |||
#define RECVFROM(s, b, l, f, r, o) recvfrom(s, b, l, f, r, o) | #define GETPEERNAME(s, n, l) getpeername(s, n, l) | |||
#define SELECT(n, r, w, e, t) select(n, r, w, e, t) | #define GETSOCKNAME(s, n, l) getsockname(s, n, l) | |||
#define SEND(s, b, l, f) send(s, b, l, f) | #define GETSOCKOPT(s, l, o, v, p) getsockopt(s, l, o, v, p) | |||
#define SENDTO(s, b, l, f, o, n) sendto(s, b, l, f, o, n) | #define LISTEN(s, b) listen(s, b) | |||
#define SETSOCKOPT(s, l, o, v, n) setsockopt(s, l, o, v, n) | #define RECV(s, b, l, f) recv(s, b, l, f) | |||
#define SHUTDOWN(s, h) shutdown(s, h) | #define RECVFROM(s, b, l, f, r, o) recvfrom(s, b, l, f, r, o) | |||
#define SOCKET(a, t, p) socket(a, t, p) | #define SELECT(n, r, w, e, t) select(n, r, w, e, t) | |||
#define GETHOSTBYADDR(a, l, t) gethostbyname(a, l, t) | #define SEND(s, b, l, f) send(s, b, l, f) | |||
#define GETHOSTBYNAME(n) gethostbyname(n) | #define SENDTO(s, b, l, f, o, n) sendto(s, b, l, f, o, n) | |||
#define GETTIMEOFDAY(t, n) gettimeofday(t, n) | #define SETSOCKOPT(s, l, o, v, n) setsockopt(s, l, o, v, n) | |||
#define INSQUE(e, p) insque(e, p) | #define SHUTDOWN(s, h) shutdown(s, h) | |||
#define REMQUE(e) remque(e) | #define SOCKET(a, t, p) socket(a, t, p) | |||
#define HSEARCH(i, a) hsearch(i, a) | #define GETHOSTBYADDR(a, l, t) gethostbyname(a, l, t) | |||
#define HCREATE(n) hcreate(n) | #define GETHOSTBYNAME(n) gethostbyname(n) | |||
#define HDESTROY() hdestroy() | #define GETTIMEOFDAY(t, n) gettimeofday(t, n) | |||
#define HSEARCH_R(i, a, r, h) hsearch_r(i, a, r, h) | #define INSQUE(e, p) insque(e, p) | |||
#define HCREATE_R(n, h) hcreate_r(n, h) | #define REMQUE(e) remque(e) | |||
#define HDESTROY_R(h) hdestroy_r(h) | #define HSEARCH(i, a) hsearch(i, a) | |||
#define TSEARCH(k, r, c) tsearch(k, r, c) | #define HCREATE(n) hcreate(n) | |||
#define TFIND(k, r, c) tfind(k, r, c) | #define HDESTROY() hdestroy() | |||
#define TDELETE(k, r, c) tdelete(k, r, c) | #define HSEARCH_R(i, a, r, h) hsearch_r(i, a, r, h) | |||
#define TWALK(r, a) twalk(r, a) | #define HCREATE_R(n, h) hcreate_r(n, h) | |||
#define TDESTROY(r, f) tdestroy(r, f) | #define HDESTROY_R(h) hdestroy_r(h) | |||
#define LFIND(k, b, n, s, c) lfind(k, b, n, s, c) | #define TSEARCH(k, r, c) tsearch(k, r, c) | |||
#define LSEARCH(k, b, n, s, c) lsearch(k, b, n, s, c) | #define TFIND(k, r, c) tfind(k, r, c) | |||
#define TDELETE(k, r, c) tdelete(k, r, c) | ||||
#define TWALK(r, a) twalk(r, a) | ||||
#define TDESTROY(r, f) tdestroy(r, f) | ||||
#define LFIND(k, b, n, s, c) lfind(k, b, n, s, c) | ||||
#define LSEARCH(k, b, n, s, c) lsearch(k, b, n, s, c) | ||||
#else | #else | |||
#define DIR_SEPARATOR '\\' | #define DIR_SEPARATOR '\\' | |||
#define DIR_SEPARATOR_STR "\\" | #define DIR_SEPARATOR_STR "\\" | |||
#define PATH_SEPARATOR ';' | #define PATH_SEPARATOR ';' | |||
#define PATH_SEPARATOR_STR ";" | #define PATH_SEPARATOR_STR ";" | |||
#define NEWLINE "\r\n" | #define NEWLINE "\r\n" | |||
#ifdef ENABLE_NLS | #ifdef ENABLE_NLS | |||
#define BINDTEXTDOMAIN(d, n) _win_bindtextdomain(d, n) | #define BINDTEXTDOMAIN(d, n) _win_bindtextdomain(d, n) | |||
#endif | #endif | |||
#define CREAT(p, m) _win_creat(p, m) | #define CREAT(p, m) _win_creat(p, m) | |||
#define PLIBC_CTIME(c) _win_ctime(c) | #define PLIBC_CTIME(c) _win_ctime(c) | |||
#define CTIME_R(c, b) _win_ctime_r(c, b) | #define CTIME_R(c, b) _win_ctime_r(c, b) | |||
#define FOPEN(f, m) _win_fopen(f, m) | #define FOPEN(f, m) _win_fopen(f, m) | |||
#define FTRUNCATE(f, l) _win_ftruncate(f, l) | #define FCLOSE(f) _win_fclose(f) | |||
#define OPENDIR(d) _win_opendir(d) | #define FTRUNCATE(f, l) _win_ftruncate(f, l) | |||
#define OPEN _win_open | #define OPENDIR(d) _win_opendir(d) | |||
#define CHDIR(d) _win_chdir(d) | #define CLOSEDIR(d) _win_closedir(d) | |||
#define CLOSE(f) _win_close(f) | #define READDIR(d) _win_readdir(d) | |||
#define PLIBC_KILL(p, s) _win_kill(p, s) | #define OPEN _win_open | |||
#define LSEEK(f, o, w) _win_lseek(f, o, w) | #define CHDIR(d) _win_chdir(d) | |||
#define FSTAT(h, b) _win_fstat(h, b) | #define CLOSE(f) _win_close(f) | |||
#define RMDIR(f) _win_rmdir(f) | #define PLIBC_KILL(p, s) _win_kill(p, s) | |||
#define ACCESS(p, m) _win_access(p, m) | #define LSEEK(f, o, w) _win_lseek(f, o, w) | |||
#define CHMOD(f, p) _win_chmod(f, p) | #define FSTAT(h, b) _win_fstat(h, b) | |||
#define PIPE(h) _win_pipe(h) | #define RMDIR(f) _win_rmdir(f) | |||
#define RANDOM() _win_random() | #define ACCESS(p, m) _win_access(p, m) | |||
#define SRANDOM(s) _win_srandom(s) | #define CHMOD(f, p) _win_chmod(f, p) | |||
#define REMOVE(p) _win_remove(p) | #define PIPE(h) _win_pipe(h) | |||
#define RENAME(o, n) _win_rename(o, n) | #define RANDOM() _win_random() | |||
#define STAT(p, b) _win_stat(p, b) | #define SRANDOM(s) _win_srandom(s) | |||
#define STAT64(p, b) _win_stat64(p, b) | #define REMOVE(p) _win_remove(p) | |||
#define SYSCONF(n) _win_sysconf(n) | #define RENAME(o, n) _win_rename(o, n) | |||
#define UNLINK(f) _win_unlink(f) | #define STAT(p, b) _win_stat(p, b) | |||
#define WRITE(f, b, n) _win_write(f, b, n) | #define STAT64(p, b) _win_stat64(p, b) | |||
#define READ(f, b, n) _win_read(f, b, n) | #define SYSCONF(n) _win_sysconf(n) | |||
#define GN_FREAD(b, s, c, f) _win_fread(b, s, c, f) | #define UNLINK(f) _win_unlink(f) | |||
#define GN_FWRITE(b, s, c, f) _win_fwrite(b, s, c, f) | #define WRITE(f, b, n) _win_write(f, b, n) | |||
#define SYMLINK(a, b) _win_symlink(a, b) | #define READ(f, b, n) _win_read(f, b, n) | |||
#define MMAP(s, l, p, f, d, o) _win_mmap(s, l, p, f, d, o) | #define GN_FREAD(b, s, c, f) _win_fread(b, s, c, f) | |||
#define MUNMAP(s, l) _win_munmap(s, l) | #define GN_FWRITE(b, s, c, f) _win_fwrite(b, s, c, f) | |||
#define STRERROR(i) _win_strerror(i) | #define SYMLINK(a, b) _win_symlink(a, b) | |||
#define READLINK(p, b, s) _win_readlink(p, b, s) | #define MMAP(s, l, p, f, d, o) _win_mmap(s, l, p, f, d, o) | |||
#define LSTAT(p, b) _win_lstat(p, b) | #define MKFIFO(p, m) _win_mkfifo(p, m) | |||
#define LSTAT64(p, b) _win_lstat64(p, b) | #define MSYNC(s, l, f) _win_msync(s, l, f) | |||
#define PRINTF(f, ...) _win_printf(f , __VA_ARGS__) | #define MUNMAP(s, l) _win_munmap(s, l) | |||
#define FPRINTF(fil, fmt, ...) _win_fprintf(fil, fmt, __VA_ARGS__) | #define STRERROR(i) _win_strerror(i) | |||
#define VPRINTF(f, a) _win_vprintf(f, a) | #define READLINK(p, b, s) _win_readlink(p, b, s) | |||
#define VFPRINTF(s, f, a) _win_vfprintf(s, f, a) | #define LSTAT(p, b) _win_lstat(p, b) | |||
#define VSPRINTF(d, f, a) _win_vsprintf(d, f, a) | #define LSTAT64(p, b) _win_lstat64(p, b) | |||
#define VSNPRINTF(str, size, fmt, a) _win_vsnprintf(str, size, fmt, a) | #define PRINTF(f, ...) _win_printf(f , __VA_ARGS__) | |||
#define _REAL_SNPRINTF(str, size, fmt, ...) _win_snprintf(str, size, fmt, _ | #define FPRINTF(fil, fmt, ...) _win_fprintf(fil, fmt, __VA_ARGS__) | |||
_VA_ARGS__) | #define VPRINTF(f, a) _win_vprintf(f, a) | |||
#define SPRINTF(d, f, ...) _win_sprintf(d, f, __VA_ARGS__) | #define VFPRINTF(s, f, a) _win_vfprintf(s, f, a) | |||
#define VSSCANF(s, f, a) _win_vsscanf(s, f, a) | #define VSPRINTF(d, f, a) _win_vsprintf(d, f, a) | |||
#define SSCANF(s, f, ...) _win_sscanf(s, f, __VA_ARGS__) | #define VSNPRINTF(str, size, fmt, a) _win_vsnprintf(str, size, fmt, a) | |||
#define VFSCANF(s, f, a) _win_vfscanf(s, f, a) | #define _REAL_SNPRINTF(str, size, fmt, ...) _win_snprintf(str, size, fmt, | |||
#define VSCANF(f, a) _win_vscanf(f, a) | __VA_ARGS__) | |||
#define SCANF(f, ...) _win_scanf(f, __VA_ARGS__) | #define SPRINTF(d, f, ...) _win_sprintf(d, f, __VA_ARGS__) | |||
#define FSCANF(s, f, ...) _win_fscanf(s, f, __VA_ARGS__) | #define VSSCANF(s, f, a) _win_vsscanf(s, f, a) | |||
#define WAITPID(p, s, o) _win_waitpid(p, s, o) | #define SSCANF(s, f, ...) _win_sscanf(s, f, __VA_ARGS__) | |||
#define ACCEPT(s, a, l) _win_accept(s, a, l) | #define VFSCANF(s, f, a) _win_vfscanf(s, f, a) | |||
#define BIND(s, n, l) _win_bind(s, n, l) | #define VSCANF(f, a) _win_vscanf(f, a) | |||
#define CONNECT(s, n, l) _win_connect(s, n, l) | #define SCANF(f, ...) _win_scanf(f, __VA_ARGS__) | |||
#define GETPEERNAME(s, n, l) _win_getpeername(s, n, l) | #define FSCANF(s, f, ...) _win_fscanf(s, f, __VA_ARGS__) | |||
#define GETSOCKNAME(s, n, l) _win_getsockname(s, n, l) | #define WAITPID(p, s, o) _win_waitpid(p, s, o) | |||
#define GETSOCKOPT(s, l, o, v, p) _win_getsockopt(s, l, o, v, p) | #define ACCEPT(s, a, l) _win_accept(s, a, l) | |||
#define LISTEN(s, b) _win_listen(s, b) | #define BIND(s, n, l) _win_bind(s, n, l) | |||
#define RECV(s, b, l, f) _win_recv(s, b, l, f) | #define CONNECT(s, n, l) _win_connect(s, n, l) | |||
#define RECVFROM(s, b, l, f, r, o) _win_recvfrom(s, b, l, f, r, o) | #define GETPEERNAME(s, n, l) _win_getpeername(s, n, l) | |||
#define SELECT(n, r, w, e, t) _win_select(n, r, w, e, t) | #define GETSOCKNAME(s, n, l) _win_getsockname(s, n, l) | |||
#define SEND(s, b, l, f) _win_send(s, b, l, f) | #define GETSOCKOPT(s, l, o, v, p) _win_getsockopt(s, l, o, v, p) | |||
#define SENDTO(s, b, l, f, o, n) _win_sendto(s, b, l, f, o, n) | #define LISTEN(s, b) _win_listen(s, b) | |||
#define SETSOCKOPT(s, l, o, v, n) _win_setsockopt(s, l, o, v, n) | #define RECV(s, b, l, f) _win_recv(s, b, l, f) | |||
#define SHUTDOWN(s, h) _win_shutdown(s, h) | #define RECVFROM(s, b, l, f, r, o) _win_recvfrom(s, b, l, f, r, o) | |||
#define SOCKET(a, t, p) _win_socket(a, t, p) | #define SELECT(n, r, w, e, t) _win_select(n, r, w, e, t) | |||
#define GETHOSTBYADDR(a, l, t) _win_gethostbyname(a, l, t) | #define SEND(s, b, l, f) _win_send(s, b, l, f) | |||
#define GETHOSTBYNAME(n) _win_gethostbyname(n) | #define SENDTO(s, b, l, f, o, n) _win_sendto(s, b, l, f, o, n) | |||
#define GETTIMEOFDAY(t, n) _win_gettimeofday(t, n) | #define SETSOCKOPT(s, l, o, v, n) _win_setsockopt(s, l, o, v, n) | |||
#define INSQUE(e, p) _win_insque(e, p) | #define SHUTDOWN(s, h) _win_shutdown(s, h) | |||
#define REMQUE(e) _win_remque(e) | #define SOCKET(a, t, p) _win_socket(a, t, p) | |||
#define HSEARCH(i, a) _win_hsearch(i, a) | #define GETHOSTBYADDR(a, l, t) _win_gethostbyname(a, l, t) | |||
#define HCREATE(n) _win_hcreate(n) | #define GETHOSTBYNAME(n) _win_gethostbyname(n) | |||
#define HDESTROY() _win_hdestroy() | #define GETTIMEOFDAY(t, n) _win_gettimeofday(t, n) | |||
#define HSEARCH_R(i, a, r, h) _win_hsearch_r(i, a, r, h) | #define INSQUE(e, p) _win_insque(e, p) | |||
#define HCREATE_R(n, h) _win_hcreate_r(n, h) | #define REMQUE(e) _win_remque(e) | |||
#define HDESTROY_R(h) _win_hdestroy_r(h) | #define HSEARCH(i, a) _win_hsearch(i, a) | |||
#define TSEARCH(k, r, c) _win_tsearch(k, r, c) | #define HCREATE(n) _win_hcreate(n) | |||
#define TFIND(k, r, c) _win_tfind(k, r, c) | #define HDESTROY() _win_hdestroy() | |||
#define TDELETE(k, r, c) _win_tdelete(k, r, c) | #define HSEARCH_R(i, a, r, h) _win_hsearch_r(i, a, r, h) | |||
#define TWALK(r, a) _win_twalk(r, a) | #define HCREATE_R(n, h) _win_hcreate_r(n, h) | |||
#define TDESTROY(r, f) _win_tdestroy(r, f) | #define HDESTROY_R(h) _win_hdestroy_r(h) | |||
#define LFIND(k, b, n, s, c) _win_lfind(k, b, n, s, c) | #define TSEARCH(k, r, c) _win_tsearch(k, r, c) | |||
#define LSEARCH(k, b, n, s, c) _win_lsearch(k, b, n, s, c) | #define TFIND(k, r, c) _win_tfind(k, r, c) | |||
#define TDELETE(k, r, c) _win_tdelete(k, r, c) | ||||
#define TWALK(r, a) _win_twalk(r, a) | ||||
#define TDESTROY(r, f) _win_tdestroy(r, f) | ||||
#define LFIND(k, b, n, s, c) _win_lfind(k, b, n, s, c) | ||||
#define LSEARCH(k, b, n, s, c) _win_lsearch(k, b, n, s, c) | ||||
#endif | #endif | |||
/* search.h */ | /* search.h */ | |||
/* Prototype structure for a linked-list data structure. | /* Prototype structure for a linked-list data structure. | |||
This is the type used by the `insque' and `remque' functions. */ | This is the type used by the `insque' and `remque' functions. */ | |||
struct PLIBC_SEARCH_QELEM | struct PLIBC_SEARCH_QELEM | |||
{ | { | |||
struct qelem *q_forw; | struct qelem *q_forw; | |||
struct qelem *q_back; | struct qelem *q_back; | |||
char q_data[1]; | char q_data[1]; | |||
}; | }; | |||
/* Insert ELEM into a doubly-linked list, after PREV. */ | /* Insert ELEM into a doubly-linked list, after PREV. */ | |||
void _win_insque (void *__elem, void *__prev); | void _win_insque (void *__elem, void *__prev); | |||
/* Unlink ELEM from the doubly-linked list that it is in. */ | /* Unlink ELEM from the doubly-linked list that it is in. */ | |||
void _win_remque (void *__elem); | void _win_remque (void *__elem); | |||
/* For use with hsearch(3). */ | /* For use with hsearch(3). */ | |||
typedef int (*PLIBC_SEARCH__compar_fn_t) (__const void *, __const void *) ; | typedef int (*PLIBC_SEARCH__compar_fn_t) (__const void *, __const void *); | |||
typedef PLIBC_SEARCH__compar_fn_t _win_comparison_fn_t; | typedef PLIBC_SEARCH__compar_fn_t _win_comparison_fn_t; | |||
/* Action which shall be performed in the call the hsearch. */ | /* Action which shall be performed in the call the hsearch. */ | |||
typedef enum | typedef enum | |||
{ | { | |||
PLIBC_SEARCH_FIND, | PLIBC_SEARCH_FIND, | |||
PLIBC_SEARCH_ENTER | PLIBC_SEARCH_ENTER | |||
} | } | |||
PLIBC_SEARCH_ACTION; | PLIBC_SEARCH_ACTION; | |||
typedef struct PLIBC_SEARCH_entry | typedef struct PLIBC_SEARCH_entry | |||
{ | { | |||
char *key; | char *key; | |||
void *data; | void *data; | |||
} | } | |||
PLIBC_SEARCH_ENTRY; | PLIBC_SEARCH_ENTRY; | |||
/* The reentrant version has no static variables to maintain the state. | /* The reentrant version has no static variables to maintain the state. | |||
Instead the interface of all functions is extended to take an argument | Instead the interface of all functions is extended to take an argument | |||
which describes the current status. */ | which describes the current status. */ | |||
typedef struct _PLIBC_SEARCH_ENTRY | typedef struct _PLIBC_SEARCH_ENTRY | |||
{ | { | |||
unsigned int used; | unsigned int used; | |||
PLIBC_SEARCH_ENTRY entry; | PLIBC_SEARCH_ENTRY entry; | |||
} | } | |||
_PLIBC_SEARCH_ENTRY; | _PLIBC_SEARCH_ENTRY; | |||
/* Family of hash table handling functions. The functions also | /* Family of hash table handling functions. The functions also | |||
have reentrant counterparts ending with _r. The non-reentrant | have reentrant counterparts ending with _r. The non-reentrant | |||
functions all work on a signle internal hashing table. */ | functions all work on a signle internal hashing table. */ | |||
/* Search for entry matching ITEM.key in internal hash table. If | /* Search for entry matching ITEM.key in internal hash table. If | |||
ACTION is `FIND' return found entry or signal error by returning | ACTION is `FIND' return found entry or signal error by returning | |||
NULL. If ACTION is `ENTER' replace existing data (if any) with | NULL. If ACTION is `ENTER' replace existing data (if any) with | |||
ITEM.data. */ | ITEM.data. */ | |||
PLIBC_SEARCH_ENTRY *_win_hsearch (PLIBC_SEARCH_ENTRY __item, | PLIBC_SEARCH_ENTRY *_win_hsearch (PLIBC_SEARCH_ENTRY __item, PLIBC_SEARCH_A | |||
PLIBC_SEARCH_ACTION __action); | CTION __action); | |||
/* Create a new hashing table which will at most contain NEL elements. */ | /* Create a new hashing table which will at most contain NEL elements. */ | |||
int _win_hcreate (size_t __nel); | int _win_hcreate (size_t __nel); | |||
/* Destroy current internal hashing table. */ | /* Destroy current internal hashing table. */ | |||
void _win_hdestroy (void); | void _win_hdestroy (void); | |||
/* Data type for reentrant functions. */ | /* Data type for reentrant functions. */ | |||
struct PLIBC_SEARCH_hsearch_data | struct PLIBC_SEARCH_hsearch_data | |||
{ | { | |||
struct _PLIBC_SEARCH_ENTRY *table; | struct _PLIBC_SEARCH_ENTRY *table; | |||
unsigned int size; | unsigned int size; | |||
unsigned int filled; | unsigned int filled; | |||
}; | }; | |||
/* Reentrant versions which can handle multiple hashing tables at the | /* Reentrant versions which can handle multiple hashing tables at the | |||
same time. */ | same time. */ | |||
int _win_hsearch_r (PLIBC_SEARCH_ENTRY __item, PLIBC_SEARCH_ACTION __acti | int _win_hsearch_r (PLIBC_SEARCH_ENTRY __item, PLIBC_SEARCH_ACTION __action | |||
on, | , PLIBC_SEARCH_ENTRY **__retval, | |||
PLIBC_SEARCH_ENTRY ** __retval, | struct PLIBC_SEARCH_hsearch_data *__htab); | |||
struct PLIBC_SEARCH_hsearch_data *__htab); | int _win_hcreate_r (size_t __nel, struct PLIBC_SEARCH_hsearch_data *__htab) | |||
int _win_hcreate_r (size_t __nel, struct PLIBC_SEARCH_hsearch_data *__hta | ; | |||
b); | void _win_hdestroy_r (struct PLIBC_SEARCH_hsearch_data *__htab); | |||
void _win_hdestroy_r (struct PLIBC_SEARCH_hsearch_data *__htab); | ||||
/* The tsearch routines are very interesting. They make many | /* The tsearch routines are very interesting. They make many | |||
assumptions about the compiler. It assumes that the first field | assumptions about the compiler. It assumes that the first field | |||
in node must be the "key" field, which points to the datum. | in node must be the "key" field, which points to the datum. | |||
Everything depends on that. */ | Everything depends on that. */ | |||
/* For tsearch */ | /* For tsearch */ | |||
typedef enum | typedef enum | |||
{ | { | |||
PLIBC_SEARCH_preorder, | PLIBC_SEARCH_preorder, | |||
PLIBC_SEARCH_postorder, | PLIBC_SEARCH_postorder, | |||
PLIBC_SEARCH_endorder, | PLIBC_SEARCH_endorder, | |||
PLIBC_SEARCH_leaf | PLIBC_SEARCH_leaf | |||
} | } | |||
PLIBC_SEARCH_VISIT; | PLIBC_SEARCH_VISIT; | |||
/* Search for an entry matching the given KEY in the tree pointed to | /* Search for an entry matching the given KEY in the tree pointed to | |||
by *ROOTP and insert a new element if not found. */ | by *ROOTP and insert a new element if not found. */ | |||
void *_win_tsearch (__const void *__key, void **__rootp, | void *_win_tsearch (__const void *__key, void **__rootp, | |||
PLIBC_SEARCH__compar_fn_t __compar); | PLIBC_SEARCH__compar_fn_t __compar); | |||
/* Search for an entry matching the given KEY in the tree pointed to | /* Search for an entry matching the given KEY in the tree pointed to | |||
by *ROOTP. If no matching entry is available return NULL. */ | by *ROOTP. If no matching entry is available return NULL. */ | |||
void *_win_tfind (__const void *__key, void *__const * __rootp, | void *_win_tfind (__const void *__key, void *__const *__rootp, | |||
PLIBC_SEARCH__compar_fn_t __compar); | PLIBC_SEARCH__compar_fn_t __compar); | |||
/* Remove the element matching KEY from the tree pointed to by *ROOTP. */ | /* Remove the element matching KEY from the tree pointed to by *ROOTP. */ | |||
void *_win_tdelete (__const void *__restrict __key, void **__restrict __r | void *_win_tdelete (__const void *__restrict __key, | |||
ootp, | void **__restrict __rootp, | |||
PLIBC_SEARCH__compar_fn_t __compar); | PLIBC_SEARCH__compar_fn_t __compar); | |||
typedef void (*PLIBC_SEARCH__action_fn_t) (__const void *__nodep, | typedef void (*PLIBC_SEARCH__action_fn_t) (__const void *__nodep, PLIBC_SEA | |||
PLIBC_SEARCH_VISIT __value, | RCH_VISIT __value, | |||
int __level); | int __level); | |||
/* Walk through the whole tree and call the ACTION callback for every node | /* Walk through the whole tree and call the ACTION callback for every node | |||
or leaf. */ | or leaf. */ | |||
void _win_twalk (__const void *__root, PLIBC_SEARCH__action_fn_t __action ); | void _win_twalk (__const void *__root, PLIBC_SEARCH__action_fn_t __action); | |||
/* Callback type for function to free a tree node. If the keys are atomic | /* Callback type for function to free a tree node. If the keys are atomic | |||
data this function should do nothing. */ | data this function should do nothing. */ | |||
typedef void (*PLIBC_SEARCH__free_fn_t) (void *__nodep); | typedef void (*PLIBC_SEARCH__free_fn_t) (void *__nodep); | |||
/* Destroy the whole tree, call FREEFCT for each node or leaf. */ | /* Destroy the whole tree, call FREEFCT for each node or leaf. */ | |||
void _win_tdestroy (void *__root, PLIBC_SEARCH__free_fn_t __freefct); | void _win_tdestroy (void *__root, PLIBC_SEARCH__free_fn_t __freefct); | |||
/* Perform linear search for KEY by comparing by COMPAR in an array | /* Perform linear search for KEY by comparing by COMPAR in an array | |||
[BASE,BASE+NMEMB*SIZE). */ | [BASE,BASE+NMEMB*SIZE). */ | |||
void *_win_lfind (__const void *__key, __const void *__base, size_t * __n | void *_win_lfind (__const void *__key, __const void *__base, | |||
memb, | size_t *__nmemb, size_t __size, PLIBC_SEARCH__compar_fn_t __compar) | |||
size_t __size, PLIBC_SEARCH__compar_fn_t __compar); | ; | |||
/* Perform linear search for KEY by comparing by COMPAR function in | /* Perform linear search for KEY by comparing by COMPAR function in | |||
array [BASE,BASE+NMEMB*SIZE) and insert entry if not found. */ | array [BASE,BASE+NMEMB*SIZE) and insert entry if not found. */ | |||
void *_win_lsearch (__const void *__key, void *__base, size_t * __nmemb, | void *_win_lsearch (__const void *__key, void *__base, | |||
size_t __size, PLIBC_SEARCH__compar_fn_t __compar); | size_t *__nmemb, size_t __size, PLIBC_SEARCH__compar_fn_t __compa | |||
r); | ||||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif | #endif | |||
#endif //_PLIBC_H_ | #endif //_PLIBC_H_ | |||
/* end of plibc.h */ | /* end of plibc.h */ | |||
End of changes. 79 change blocks. | ||||
524 lines changed or deleted | 583 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |