#ifndef NETCOMM_INCLUDED #define NETCOMM_INCLUDED #include "datatypes.h" INT8 netComm_init (void); void netComm_run (void); void netComm_fillBuffer(); UINT32 netComm_listener (INT8, UINT8, UINT32, UINT32); int netComm_processData(int); int netComm_disconn (void); int netComm_send(void); int netComm_netPrint(char*); int netComm_addFile(char*, int, char*); int netComm_getIndex(char*); int netComm_delFile(char*); int netComm_finished(int, int); void netComm_eventReturn(int); static void opentcp_init(void); int netComm_buffPush(char *); char* netComm_buffPop(); int inline netComm_isBuffEmpty(); #endif