Syntax for inbound API function calls

The three following syntax options are available for inbound processing via a DLL:

ret = INBOUNDMAPPER(int argc, char **argv);

The required parameters are passed as an array for INBOUNDMAPPER.

ret = INBOUNDRunCmd(char *cmd);

The parameters are passed as one command string for INBOUNDRunCmd. This string argument can be generated automatically in ECMap by filling in the appropriate the textboxes on the Run Inbound Map screen and clicking the Create Batch button.

ret = INRun(char *argv[1], MEMIOSTRUCT **ppmystruct);

The parameters are passed as one command string for InRun. This string argument can be generated automatically in ECMap by filling in the appropriate the textboxes on the Run Inbound Map screen and clicking the Create Batch button.