project_files/frontlib/ipc/gameconn.h
changeset 7230 240620f46dd7
parent 7224 5143861c83bd
child 7234 613998625a3c
--- a/project_files/frontlib/ipc/gameconn.h	Tue Jun 12 21:10:11 2012 +0200
+++ b/project_files/frontlib/ipc/gameconn.h	Fri Jun 15 19:57:25 2012 +0200
@@ -16,7 +16,7 @@
 struct _flib_gameconn;
 typedef struct _flib_gameconn flib_gameconn;
 
-flib_gameconn *flib_gameconn_create(const char *playerName, flib_cfg_meta *metaconf, flib_gamesetup *setup, bool netgame);
+flib_gameconn *flib_gameconn_create(const char *playerName, flib_gamesetup *setup, bool netgame);
 flib_gameconn *flib_gameconn_create_playdemo(const uint8_t *demo, int size);
 flib_gameconn *flib_gameconn_create_loadgame(const char *playerName, const uint8_t *save, int size);
 void flib_gameconn_destroy(flib_gameconn *conn);
@@ -75,4 +75,6 @@
  */
 void flib_gameconn_onNetMessage(flib_gameconn *conn, void (*callback)(void *context, const uint8_t *em, int size), void* context);
 
+// TODO efinish
+
 #endif