qmlFrontend/flib.h
branchqmlfrontend
changeset 10452 03519fd9f98d
parent 10450 bf9e30b4ef9b
child 10456 6fd99bb73524
equal deleted inserted replaced
10450:bf9e30b4ef9b 10452:03519fd9f98d
    11     MSG_PREVIEW
    11     MSG_PREVIEW
    12     , MSG_ADDPLAYINGTEAM
    12     , MSG_ADDPLAYINGTEAM
    13     , MSG_REMOVEPLAYINGTEAM
    13     , MSG_REMOVEPLAYINGTEAM
    14     , MSG_ADDTEAM
    14     , MSG_ADDTEAM
    15     , MSG_REMOVETEAM
    15     , MSG_REMOVETEAM
       
    16     , MSG_TEAMCOLOR
    16 };
    17 };
    17 
    18 
    18 typedef union string255_
    19 typedef union string255_
    19     {
    20     {
    20         struct {
    21         struct {
    40 typedef char **getThemesList_t();
    41 typedef char **getThemesList_t();
    41 typedef void freeThemesList_t(char **list);
    42 typedef void freeThemesList_t(char **list);
    42 typedef uint32_t getThemeIcon_t(char * theme, char * buffer, uint32_t size);
    43 typedef uint32_t getThemeIcon_t(char * theme, char * buffer, uint32_t size);
    43 
    44 
    44 typedef char **getTeamsList_t();
    45 typedef char **getTeamsList_t();
    45 typedef void tryAddTeam_t(const char * seed);
    46 typedef void tryAddTeam_t(const char * teamName);
    46 typedef void tryRemoveTeam_t(const char * seed);
    47 typedef void tryRemoveTeam_t(const char * teamName);
       
    48 typedef void changeTeamColor_t(const char * teamName, int32_t dir);
    47 
    49 
    48 #ifdef __cplusplus
    50 #ifdef __cplusplus
    49 }
    51 }
    50 #endif
    52 #endif
    51 
    53