ae2f_docs
Loading...
Searching...
No Matches
WSock.h
Go to the documentation of this file.
1/**
2 * @file WSock.h
3 * Websocket, used for Inet.h
4 * */
5
6#ifndef ae2f_Sys_WSock_h
7#define ae2f_Sys_WSock_h
8
9#include "../Sys.h"
10#include "./Inet.h"
11
12#if ae2f_Sys_WIN(!)0
13#include <windows.h>
14
15#define ae2f_SysWSock SOCKET
16#else
17#define ae2f_SysWSock int
18#endif
19
20typedef ae2f_SysWSock ae2f_SysWSock_t;
21
22#endif
#define ae2f_MAC(a)
A hint for creating a macro from void-returning function.
Definition Macro.h:17
#define ae2f_Sys_WIN
System does not support this version. <ae2f_SysInetMk::prm_VerReq>.
Definition Sys.h:18
#define ae2f_SysWSock
Definition WSock.h:17