home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BUG 4
/
BUGCD1997_05.BIN
/
aplic
/
clip4win
/
clip4win.exe
/
C4W30E.HUF
/
INCLUDE
/
MSG.CH
< prev
next >
Wrap
Text File
|
1993-10-08
|
820b
|
30 lines
////////////////////////////
//
// Clip-4-Win MSG definitions
//
// Copyright (C) 1993 Skelton Software, Kendal Cottage, Hillam, Leeds, UK.
// All Rights Reserved.
//
////////////////////////////
#ifndef C4W_MSG_CH
#define C4W_MSG_CH
// Array elements of aMsg[], which is used with GetMessage() etc.
//
// (these correspond to the members of the Windows MSG structure)
#define MSG_hwnd 1 // hWnd of the message (may be 0)
#define MSG_message 2 // the WM_* value
#define MSG_wParam 3 // the nwParam
#define MSG_lParam 4 // the nlParam (may be 2 16-bit values)
#define MSG_time 5 // time the msg was sent
#define MSG_x 6 // mouse nX at time of msg (screen co-ord)
#define MSG_y 7 // mouse nY at time of msg (screen co-ord)
#define MSG_LENGTH 7 // length of array
#endif // C4W_MSG_CH