hnm_event_priority_map

Structure representing a single mapping of an event name to a priority value.

Synopsis:

struct hnm_event_priority_map hnm_EventPriorityMap {
    char event_name [256];
    hnm_Priority priority ;
    hnm_EventPriorityMap * next ;
};

Data:

char event_name[256]

The name of an event. The name can be at most 255 characters in length (plus a null terminator).

hnm_Priority priority

The priority that has been assigned to the named event.

hnm_EventPriorityMap * next

A pointer to the next event priority map in the global map list.

Library:

libhnm

Description: