#ifndef NOTIFIER_SYSTEM_H #define NOTIFIER_SYSTEM_H /* Clears all defined notifiers. No notifiers will be notified after this is called */ void notifier_clear(); /* Initializes the notification system. Call this ONCE before using the notification system */ void notifier_init(); /* Adds a notifier to the set of notifiers that will be called */ void notifier_add(void (*)(char*)); /* Call this when you're done with the notifier system */ void notifier_deinit(); #endif