#ifndef _NETAPI_T_H__ #define _NETAPI_T_H__ #include "tcpipapi.h" #define TCPIPVECT 0xAC #define TCP SOCK_STREAM #define UDP SOCK_DGRAM struct errorInfo { int errorCode; char* errorDescr; }; typedef struct errorInfo* errorInfoPtr; struct clientInfo { char* IPAddress; unsigned int port; }; typedef struct clientInfo* clientInfoPtr; typedef int bool; typedef unsigned char byte; #endif /* _NETAPI_T_H__ */
1.0.0 written by Dimitri van Heesch,
© 1997-1999