event.h 276 B

12345678910
  1. #ifndef EVENT_H
  2. #define EVENT_H
  3. char *error_string(unsigned long);
  4. char *message_string(unsigned long);
  5. void log_event(unsigned short, unsigned long, ...);
  6. void print_message(FILE *, unsigned long, ...);
  7. int popup_message(unsigned int, unsigned long, ...);
  8. #endif