I am trying to find info about the second argument to ACAPI_Command_Call.
GSErrCode ACAPI_Command_Call (
const API_ModulID* mdid,
GSType cmdID,
Int32 cmdVersion,
GSHandle params,
GSPtr resultData,
bool silentMode
);
Parameters
cmdID
[in] the identifier of the command to be executed.
Examples have shown me two options - 'OBJO' and 'GDCO'.
- - What exactly is the 'identifier of the command'? I thought it would be the function name from the Add-on I was calling from that I want to run remotely. When I provide that, I get an error of "Too many characters for in character constant". So I am thinking there is a #define somewhere that might explain it a little more. No luck finding that.
- - What are the options, only the 2 I list above? And what do they mean?
- - How do I know when to use each option?
thanks -