home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 06 / dflat3 / message.h < prev    next >
Text File  |  1991-05-14  |  508b  |  27 lines

  1. /* ----------- message.h ------------ */
  2.  
  3. #ifndef MESSAGES_H
  4. #define MESSGAES_H
  5.  
  6. #define MAXMESSAGES 50
  7. #define DELAYTICKS 1
  8. #define FIRSTDELAY 7
  9. #define DOUBLETICKS 5
  10.  
  11. #define TE(m) m
  12.  
  13. typedef enum messages {
  14.  
  15. #include "dflatmsg.h"
  16.  
  17. } MESSAGE;
  18.  
  19. /* --------- message prototypes ----------- */
  20. void init_messages(void);
  21. void PostMessage(WINDOW, MESSAGE, PARAM, PARAM);
  22. int SendMessage(WINDOW, MESSAGE, PARAM, PARAM);
  23. int dispatch_message(void);
  24. int TestCriticalError(void);
  25.  
  26. #endif
  27.