home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / clip4win / clip4win.exe / C4W30E.HUF / INCLUDE / MSG.CH < prev    next >
Text File  |  1993-10-08  |  820b  |  30 lines

  1. ////////////////////////////
  2. //
  3. //    Clip-4-Win MSG definitions
  4. //
  5. //    Copyright (C) 1993 Skelton Software, Kendal Cottage, Hillam, Leeds, UK.
  6. //    All Rights Reserved.
  7. //
  8. ////////////////////////////
  9.  
  10. #ifndef    C4W_MSG_CH
  11. #define    C4W_MSG_CH
  12.  
  13.  
  14. // Array elements of aMsg[], which is used with GetMessage() etc.
  15. //
  16. // (these correspond to the members of the Windows MSG structure)
  17.  
  18. #define    MSG_hwnd    1    // hWnd of the message (may be 0)
  19. #define    MSG_message    2    // the WM_* value
  20. #define    MSG_wParam    3    // the nwParam
  21. #define    MSG_lParam    4    // the nlParam (may be 2 16-bit values)
  22. #define    MSG_time    5    // time the msg was sent
  23. #define    MSG_x        6    // mouse nX at time of msg (screen co-ord)
  24. #define    MSG_y        7    // mouse nY at time of msg (screen co-ord)
  25.  
  26. #define    MSG_LENGTH    7    // length of array
  27.  
  28. #endif    // C4W_MSG_CH
  29.  
  30.