qmlFrontend/flib.h
branchqmlfrontend
changeset 10418 091d2c0216c3
parent 10416 1c301054694d
child 10420 02c573d19224
equal deleted inserted replaced
10416:1c301054694d 10418:091d2c0216c3
    16             unsigned char len;
    16             unsigned char len;
    17             unsigned char str[255];
    17             unsigned char str[255];
    18         };
    18         };
    19     } string255;
    19     } string255;
    20 
    20 
    21 typedef void RunEngine_t(int argc, char ** argv);
    21 typedef void RunEngine_t(int argc, const char ** argv);
    22 typedef void registerIPCCallback_t(void * context, void (*)(void * context, string255 str));
    22 typedef void registerIPCCallback_t(void * context, void (*)(void * context, uint8_t len, const char * msg));
    23 typedef void ipcToEngine_t(string255 str);
    23 typedef void ipcToEngine_t(uint8_t len, const char * msg);
    24 typedef void flibInit_t();
    24 typedef void flibInit_t();
    25 
    25 
    26 #ifdef __cplusplus
    26 #ifdef __cplusplus
    27 }
    27 }
    28 #endif
    28 #endif