mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-20 10:11:21 +00:00
35 lines
720 B
C
35 lines
720 B
C
|
/*
|
||
|
* src/interfaces/libpq/win32.h
|
||
|
*/
|
||
|
#ifndef __win32_h_included
|
||
|
#define __win32_h_included
|
||
|
|
||
|
/*
|
||
|
* Some compatibility functions
|
||
|
*/
|
||
|
#ifdef __BORLANDC__
|
||
|
#define _timeb timeb
|
||
|
#define _ftime(a) ftime(a)
|
||
|
#define _errno errno
|
||
|
#define popen(a,b) _popen(a,b)
|
||
|
#else
|
||
|
/* open provided elsewhere */
|
||
|
#define close(a) _close(a)
|
||
|
#define read(a,b,c) _read(a,b,c)
|
||
|
#define write(a,b,c) _write(a,b,c)
|
||
|
#endif
|
||
|
|
||
|
#undef EAGAIN /* doesn't apply on sockets */
|
||
|
#undef EINTR
|
||
|
#define EINTR WSAEINTR
|
||
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
||
|
#define ECONNRESET WSAECONNRESET
|
||
|
#define EINPROGRESS WSAEINPROGRESS
|
||
|
|
||
|
/*
|
||
|
* support for handling Windows Socket errors
|
||
|
*/
|
||
|
extern const char *winsock_strerror(int err, char *strerrbuf, size_t buflen);
|
||
|
|
||
|
#endif
|