aboutsummaryrefslogtreecommitdiff
path: root/tcpclient.h
diff options
context:
space:
mode:
Diffstat (limited to 'tcpclient.h')
-rw-r--r--tcpclient.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/tcpclient.h b/tcpclient.h
deleted file mode 100644
index ea02e42..0000000
--- a/tcpclient.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef tcpclient_INCLUDED
-#define tcpclient_INCLUDED
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-//return port handle or -1 if fails
-int OpenTCPPort(const char * ip_addr, int port);
-int PollTCPPort(int, unsigned char *, int);
-int SendTCPByte(int, unsigned char);
-int SendTCPBuf(int, unsigned char *, int);
-void CloseTCPport(int);
-
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif
-
-