/*
 * STRUCT: SE_ENUM_STRUCTURE
 *
 *   Used to provide meta-data (the string name and numerical value of) an
 *   enumerator within an enumerated type.
 *
 *   When a typedef is an enumerated type, an array of SE_ENUM_STRUCTURE is
 *   defined, giving the name and value of each enumerator in the type.
 *
 *   See the SE_GetDRMTypeStructure() function for details on how to
 *   access the information of a type (such as the names and values
 *   within an enumerated type).
 */
typedef struct
{
const char *name_ptr; (notes)
SE_INT32 value; (notes)
} SE_ENUM_STRUCTURE;


Field Notes

name_ptr

 name of enumerator

value

 value of enumerator
Prev: SE_DRM_TYPE_STRUCTURE. Next: SE_FEATURE_TOPOLOGY_LEVEL_ENUM. Up:Index