| Top |
| void | (*GnomeTriggerActionFunction) () |
| void | gnome_triggers_add_trigger () |
| void | gnome_triggers_vadd_trigger () |
| void | gnome_triggers_do () |
| void | gnome_triggers_vdo () |
void (*GnomeTriggerActionFunction) (char *msg,char *level,char *supinfo[]);
void gnome_triggers_add_trigger (GnomeTrigger *nt,...);
Adds a new GnomeTrigger instance to the event hierarchy.
void gnome_triggers_vadd_trigger (GnomeTrigger *nt,char *supinfo[]);
This does the same as gnome_triggers_add_trigger(), except the section is
stored in the NULL terminated array supinfo
instead of as a variable
length argument list.
void gnome_triggers_do (const char *msg,const char *level,...);
Notifies GNOME about an event happening, so that any appropriate handlers can be run.
void gnome_triggers_vdo (const char *msg,const char *level,const char *supinfo[]);
Notifies GNOME about an event happening, so that any appropriate handlers
can be run. This does the same as gnome_trigger_do() except that it takes a
NULL terminated array instead of a varargs list.