summaryrefslogtreecommitdiffstats
path: root/src/interfaces/libpq/win32.h
blob: fcce1e0544a7c3512145f96b9223e83580038d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * src/interfaces/libpq/win32.h
 */
#ifndef __win32_h_included
#define __win32_h_included

/*
 * Some compatibility functions
 */

/* 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)

#undef EAGAIN					/* doesn't apply on sockets */

/*
 * support for handling Windows Socket errors
 */
extern const char *winsock_strerror(int err, char *strerrbuf, size_t buflen);

#endif