#ifndef _DUNET_H #define _DUNET_H typedef int SOCKET; typedef enum {E_NET_ERRNO=-1, E_NET_OK=0} NetErrnoType; SOCKET NetMakeContact(const char *hostname, int port); const char *NetErrStr(); NetErrnoType NetErrNo(); #endif /* _DUNET_H */