createMember
Creates a new member.
int createMember(char instanceID[256], char memberID[256], char name[64],
char parentID[256], int* lrecl, char recFM[4], void** params,
void*** customReturn, char error[256])
Variable | Function | Description |
---|---|---|
char instanceID[256] | Input | The instance containing the member being created. |
char memberID[256] | Output | The ID of the member that is being created. |
char name[64] | Input/Output | ID of the member being created. |
char parentID[256] | Input | ID of parent container. (If no parent exists, space must be filled.) |
int* lrecl | Output | The number of columns in the data set and array. |
char recFM[4] | Output | Contains the data set's record format (FB, VB, etc.). |
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. |