qmlFrontend/flib.h
branchqmlfrontend
changeset 11423 e045dc60c37e
parent 11418 091149424aa4
child 11424 86c13e5662f1
equal deleted inserted replaced
11422:c6c6a4b32cea 11423:e045dc60c37e
    21     , MSG_REMOVELOBBYCLIENT
    21     , MSG_REMOVELOBBYCLIENT
    22     , MSG_LOBBYCHATLINE
    22     , MSG_LOBBYCHATLINE
    23     , MSG_ADDROOM
    23     , MSG_ADDROOM
    24     , MSG_UPDATEROOM
    24     , MSG_UPDATEROOM
    25     , MSG_REMOVEROOM
    25     , MSG_REMOVEROOM
       
    26     , MSG_ERROR
       
    27     , MSG_WARNING
    26 };
    28 };
    27 
    29 
    28 typedef union string255_
    30 typedef union string255_
    29     {
    31     {
    30         struct {
    32         struct {
    50 typedef void setAmmo_t(const char * ammoName);
    52 typedef void setAmmo_t(const char * ammoName);
    51 typedef void flibInit_t(const char * localPrefix, const char * userPrefix);
    53 typedef void flibInit_t(const char * localPrefix, const char * userPrefix);
    52 typedef void flibFree_t();
    54 typedef void flibFree_t();
    53 typedef void passNetData_t(const char * data);
    55 typedef void passNetData_t(const char * data);
    54 typedef void sendChatLine_t(const char * msg);
    56 typedef void sendChatLine_t(const char * msg);
       
    57 typedef void joinRoom_t(const char * roomName);
    55 
    58 
    56 typedef char **getThemesList_t();
    59 typedef char **getThemesList_t();
    57 typedef void freeThemesList_t(char **list);
    60 typedef void freeThemesList_t(char **list);
    58 typedef uint32_t getThemeIcon_t(char * theme, char * buffer, uint32_t size);
    61 typedef uint32_t getThemeIcon_t(char * theme, char * buffer, uint32_t size);
    59 
    62