SEDRIS API Conventions
Function naming: SE_ followed by function mnemonic, first letter of each word capitalized. (SE_CreateObject)
SEDRIS data types and constants are in ALL_CAPS.
Function return status: The return type of most functions is SE_STATUS_CODE_ENUM.
- Example values: SE_SUCCESS, SE_FAILURE
Function returned data:
- Most data returned from the API is done via pointers to an opaque type. (SE_OBJECT)
- All data returned through opaque types is freed using a corresponding API function. (SE_FreeObject)