summaryrefslogtreecommitdiff
path: root/include/client.h
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-03-14 15:25:01 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-03-14 15:25:01 +0000
commita4e34c257a4f5966ce699f48d30b3528bdaa45e4 (patch)
tree90835e3ad5263748ee099fc23db99b3cd12d9370 /include/client.h
parent1438b79069821cba744a4ea4739324560be64fb6 (diff)
- program bol prepisany tak, aby sa dal v buducnosti sietovy multiplayer prepisat pre protokol UDP
( BTW network.[ch] je uz zombia ) git-svn-id: http://opensvn.csie.org/tuxanci_ng@14 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'include/client.h')
-rw-r--r--include/client.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/client.h b/include/client.h
new file mode 100644
index 0000000..ba04e61
--- /dev/null
+++ b/include/client.h
@@ -0,0 +1,12 @@
+
+#ifndef MY_CLIENT
+
+#define MY_CLIENT
+
+extern int initTcpClient(char *ip, int port);
+extern void sendServer(char *msg);
+extern void eventServerBuffer();
+extern void selectClientTcpSocket();
+extern void quitTcpClient();
+
+#endif