diff options
Diffstat (limited to 'MySpace/server_con.h')
-rw-r--r-- | MySpace/server_con.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MySpace/server_con.h b/MySpace/server_con.h index e051f87..9bbacf0 100644 --- a/MySpace/server_con.h +++ b/MySpace/server_con.h @@ -1,9 +1,21 @@ #ifndef _SERVER_CON_INC
#define _SERVER_CON_INC
+#include "NetMessage.h"
+#include "m_protosvc.h"
+
extern int status;
+extern int sesskey;
+extern int req_id;
void InitServerConnection();
void DeinitServerConnection();
+void SendMessage(ClientNetMessage &msg);
+
+typedef struct {
+ PROTOSEARCHRESULT psr;
+ int uid;
+} MYPROTOSEARCHRESULT;
+
#endif
|