21 lines
258 B
C
21 lines
258 B
C
#ifdef __MINGW32__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* set errno to WSAGetLastError() */
|
|
int winsock2errno(long l);
|
|
void __winsock_init(void);
|
|
|
|
#else
|
|
|
|
#define winsock2errno(fnord) (fnord)
|
|
#define __winsock_init()
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|