SEDRIS API Fundamentals
API Conventions
- Function naming: SE_FunctionNameSE_ followed by function mnemonic, first letter of each word capitalized.
- SEDRIS data types (atomic, structs, enums, etc) & constants: mnemonics are in ALL_CAPS
- Function return status: The return type of most API functions is SE_STATUS_CODE_ENUM which indicates the success or failure of the called function.
- Nominal return value is SE_SUCCESS
- Function returned data:
- All data returned from the API is done via pointers to the return type
- Allocated memory is controlled through the use of SE_STORES