home *** CD-ROM | disk | FTP | other *** search
- #ifndef wimpmsg_H
- #define wimpmsg_H
-
- /* Title: wimpmsg.c
- * Purpose: functions for wimp message handling
- * Author: IDJ
- * History: 19-Jun-94: IDJ: created
- *
- */
-
- #ifndef os_H
- #include "os.h"
- #endif
-
- #ifndef wimp_H
- #include "wimp.h"
- #endif
-
- #ifndef toolbox_H
- #include "toolbox.h"
- #endif
-
- #ifndef event_H
- #include "event.h"
- #endif
-
- extern void wimpmsg_dispatch (wimp_block *block, toolbox_block *id_block);
-
- extern void wimpmsg_register_message_handler (int msg_no,
- event_message_handler *handler, void *handle);
-
- extern void wimpmsg_deregister_message_handler (int msg_no,
- event_message_handler *handler, void *handle);
-
- #endif
-