createContainer
Creates a new container.
int createContainer(char instanceID[256], char memberID[256], char name[64],
char parentID[256], void** params, void*** customReturn, char error[256])
| Variable | Function | Description |
|---|---|---|
| char instanceID[256] | Input | The instance containing the container being created. |
| char memberID[256] | Output | The ID of the container that is being created. |
| char name[64] | Input/Output | ID of the container being created. |
| char parentID[256] | Input | ID of parent container. (If no parent exists, space must be filled.) |
| void** params | Input | Pointer to an array of custom parameters (see Handling custom parameters and return values). |
| void*** customReturn | Output | Used to reference an array of custom return values (see Handling custom parameters and return values). |
| char error[256] | Output | If an error occurs, this should be filled with a description of the error. |