Function Name: Get AC Label

Definition

Given an EDCS Attribute Code (EAC), retrieves the string equivalent of its label.

Returns

EDCS_SUCCESS - if valid parameters were passed in and all operations succeeded.

EDCS_NULL_REQUIRED_PARAMETER - and *result_out_ptr is left unchanged, if value_ptr or result_out_ptr is NULL.

EDCS_INVALID_CODE - and *result_out_ptr is set to NULL, if value_ptr does not represent a valid EAC.

Prototype


extern EDCS_STATUS_CODE_ENUM
EDCS_GetACLabel
(
constEDCS_AC_ID *value_ptr, (notes)
constchar **result_out_ptr (notes)
);

Parameters Notes

value_ptr

 pointer to the EAC being looked up.

result_out_ptr

 pointer to a variable in the user's memory space where
 the answer will be stored.

Prev: Get AC Enum Value Label. Next: Get CC Definition. Up:Index.