EDCS Reference Manual
Functions EDCS GetHighestCodesUsed |
---|
extern EDCS_Status_Code | |||
EDCS_GetHighestCodesUsed | |||
( | |||
EDCS_Dictionary_Type | dictionary_name, | 1 | |
EDCS_Integer | * | standard_code_out_ptr, | 2 |
EDCS_Integer | * | registered_code_out_ptr | 3 |
); |
Given a dictionary type, this function will return the highest code that is in the ISO standard for that dictionary, and the highest code from the EDCS registry that is in this implementation.
EDCS_SC_SUCCESS | and standard_code_out_ptr and registered_code_out_ptr will be set to their proper values if valid parameters were passed in. |
EDCS_SC_NULL_REQUIRED_PARAMETER | and both *standard_code_out_ptr and *registered_code_out_ptr are left unchanged, if either output parameter is NULL. |
EDCS_SC_INVALID_INPUT_DICTIONARY | and both *standard_code_out_ptr and *registered_code_out_ptr will be set to zero, if the dictionary_name input parameter is not a valid EDCS_Dictionary_Type. |
1 the EDCS dictionary for which to retrieve code information
2 pointer to user's memory space to which the highest ISO standard code will be copied
3 pointer to user's memory space to which the highest registered code will be copied
Prev: EDCS_GetErrorFilePtr.
Next: EDCS_GetImplVerInfo.
Up:Index.
|