Primitive data types (int, float, string) and void types as SObjects.
| SObjectSetInt | Create a new SObject from a signed integer. |
| SObjectResetInt | Change the data value (singed integer) of an SObject that has been previously created by SObjectSetInt. |
| SObjectGetInt | Get the signed integer of the SObject object. |
| SObjectSetFloat | Create a new SObject from a float. |
| SObjectResetFloat | Change the data value (float) of an SObject that has been previously created by SObjectSetFloat. |
| SObjectGetFloat | Get the float of the SObject object. |
| SObjectSetString | Create a new SObject from a character string. |
| SObjectResetString | Change the data value (string) of an SObject that has been previously created by SObjectSetString. |
| SObjectGetString | Get the string of the SObject object. |
| SObjectSetVoid | Create a new SObject from a void pointer. |
| SObjectResetVoid | Change the pointer of an SObject that has been previously created by SObjectSetVoid. |
| SObjectGetVoid | Get the void pointer of the SObject object. |
Create a new SObject from a signed integer.
| Parameters: |
|
|---|---|
| Return: | Pointer to the newly created SObject (of type SInt). |
Create a new SObject from a float.
| Parameters: |
|
|---|---|
| Return: | Pointer to the newly created SObject (of type SFloat). |
Change the data value (float) of an SObject that has been previously created by SObjectSetFloat.
| Parameters: |
|
|---|
Create a new SObject from a character string.
| Parameters: |
|
|---|---|
| Return: | Pointer to the newly created SObject (of type SString). |
| Note: | The string is copied and not referenced. |
Change the data value (string) of an SObject that has been previously created by SObjectSetString.
| Parameters: |
|
|---|
Create a new SObject from a void pointer.
| Parameters: |
|
|---|---|
| Return: | Pointer to the newly created SObject. |
| Note: | The type_name is copied and not referenced. |
Change the pointer of an SObject that has been previously created by SObjectSetVoid.
| Parameters: |
|
|---|---|
| Note: | The type_name is copied and not referenced. |