I want to integrate a C++ function with the Matlab Legacy Code Tool.
The C++ function call looks like: void init(int argc, char* argv[], struct sStruct *pStruct)
What would be the corrosponding legacy code tool function specification. So far I have something like: void init(int16 p1, int8 p2[], sStruct work1[1])
but of course compiler cannot convert 'int8_T* {aka signed char*}' to 'char'**