home *** CD-ROM | disk | FTP | other *** search
- /*
- #### # # # #
- # # # # # The FreeWare C library for
- # # ## ### # # # # ### RISC OS machines
- # # # # # # # # # # # ___________________________________
- # # #### ### ## # # # #
- # # # # # # # # # # Please refer to the accompanying
- #### ### #### # # ##### # ### documentation for conditions of use
- ________________________________________________________________________
-
- File: Event.EMsgDefs.h
- Author: Copyright © 1992 Jason Williams
- Version: 1.00 (16 Mar 1992)
- Purpose: Extension to Event.c to allow routing of specific message types
- to different windows' message handlers.
- */
-
- #include <stdlib.h>
- #include "LinkList.h"
- #include "Error.h"
- #include "Event.h"
-
-
- typedef struct
- {
- linklist_header header;
- message_action messagetype;
- linklist_header windowlist;
- } eventmsg_claimrecord;
-
-
-
- typedef struct
- {
- linklist_header header;
- window_handle window;
- event_handler handler;
- void *reference;
- } eventmsg_windowrecord;
-
-