Generated Data Types, Data Usage, and Functions : New Function Call : Examples

Examples
Prototype:
void myFunc(int inPrm0,
int * outPrm1, int * inOutPrm2);
Call:
myFunc(INPRM, &(OUTPRM), &(INOUTPRM));
Prototype:
void myFuncStr(char * inPrmStr,
char * outPrmStr, char * inOutPrmStr);
Call: myFuncStr(PRMSTR, PRMSTR, PRMSTR);