Parameter
|
Description
|
---|---|
returnValue
|
Points to a COMPLEXARRAY, a COMPLEXSCALAR , or a MCSTRING structure where the function result is to be stored.
If you are implementing a custom function that returns a scalar, returnValue is a pointer to a COMPLEXSCALAR structure, as implemented by the LPCOMPLEXSCALAR construct.
|
argument1
|
Points to a read-only COMPLEXARRAY, COMPLEXSCALAR, or MCSTRING structure where the first function argument is stored.
If you are implementing a custom function that has a scalar as its first argument, argument1 is a pointer to a LPCCOMPLEXSCALAR structure.
|
...
|
If you are implementing a custom function that has more than one argument, your MyCFunction will have additional arguments, each of which must be one of the types defined above. The additional arguments will be pointers to the read-only structures where the data for the corresponding custom function argument is stored.
|