qmlfrontend/flib.h
branchqmlfrontend
changeset 12858 0c6fb706f747
parent 12857 90f927b4b9e1
child 12859 a03f245243b0
--- a/qmlfrontend/flib.h	Fri Dec 22 23:59:03 2017 +0100
+++ b/qmlfrontend/flib.h	Sun Dec 24 00:44:16 2017 +0100
@@ -8,62 +8,26 @@
 #endif
 
 enum MessageType {
-    MSG_RENDERINGPREVIEW
-    , MSG_PREVIEW
-    , MSG_PREVIEWHOGCOUNT
-    , MSG_ADDPLAYINGTEAM
-    , MSG_REMOVEPLAYINGTEAM
-    , MSG_ADDTEAM
-    , MSG_REMOVETEAM
-    , MSG_TEAMCOLOR
-    , MSG_HEDGEHOGSNUMBER
-    , MSG_NETDATA
-    , MSG_TONET
-    , MSG_FLIBEVENT
-    , MSG_CONNECTED
-    , MSG_DISCONNECTED
-    , MSG_ADDLOBBYCLIENT
-    , MSG_REMOVELOBBYCLIENT
-    , MSG_LOBBYCHATLINE
-    , MSG_ADDROOMCLIENT
-    , MSG_REMOVEROOMCLIENT
-    , MSG_ROOMCHATLINE
-    , MSG_ADDROOM
-    , MSG_UPDATEROOM
-    , MSG_REMOVEROOM
-    , MSG_ERROR
-    , MSG_WARNING
-    , MSG_MOVETOLOBBY
-    , MSG_MOVETOROOM
-    , MSG_NICKNAME
-    , MSG_SEED
-    , MSG_THEME
-    , MSG_SCRIPT
-    , MSG_FEATURESIZE
-    , MSG_MAPGEN
-    , MSG_MAP
-    , MSG_MAZESIZE
-    , MSG_TEMPLATE
-    , MSG_AMMO
-    , MSG_SCHEME
+    MSG_RENDERINGPREVIEW,
+    MSG_PREVIEW,
+    MSG_PREVIEWHOGCOUNT,
 };
 
-typedef union string255_
-    {
-        struct {
-            unsigned char s[256];
-        };
-        struct {
-            unsigned char len;
-            unsigned char str[255];
-        };
-    } string255;
+typedef union string255_ {
+    struct {
+        unsigned char s[256];
+    };
+    struct {
+        unsigned char len;
+        unsigned char str[255];
+    };
+} string255;
 
-typedef void RunEngine_t(int argc, const char ** argv);
-typedef void registerUIMessagesCallback_t(void * context, void (*)(void * context, MessageType mt, const char * msg, uint32_t len));
-typedef void flibInit_t(const char * localPrefix, const char * userPrefix);
+typedef void RunEngine_t(int argc, const char** argv);
+typedef void registerUIMessagesCallback_t(void* context, void (*)(void* context, MessageType mt, const char* msg, uint32_t len));
+typedef void flibInit_t(const char* localPrefix, const char* userPrefix);
 typedef void flibFree_t();
-typedef void passFlibEvent_t(const char * data);
+typedef void passFlibEvent_t(const char* data);
 
 #ifdef __cplusplus
 }