Ignore:
Timestamp:
Nov 27, 1999, 1:08:20 AM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/winconst.h

    r1631 r1854  
    1 /* $Id: winconst.h,v 1.12 1999-11-08 13:45:35 sandervl Exp $ */
     1/* $Id: winconst.h,v 1.13 1999-11-27 00:05:03 sandervl Exp $ */
    22
    33/*
     
    252252#define MK_CONTROL_W        0x0008
    253253#define MK_MBUTTON_W        0x0010
     254
     255
     256/* Queue status flags */
     257#define QS_KEY_W          0x0001
     258#define QS_MOUSEMOVE_W    0x0002
     259#define QS_MOUSEBUTTON_W  0x0004
     260#define QS_MOUSE_W        (QS_MOUSEMOVE_W | QS_MOUSEBUTTON_W)
     261#define QS_POSTMESSAGE_W  0x0008
     262#define QS_TIMER_W        0x0010
     263#define QS_PAINT_W        0x0020
     264#define QS_SENDMESSAGE_W  0x0040
     265#define QS_HOTKEY_W       0x0080
     266#define QS_INPUT_W        (QS_MOUSE_W | QS_KEY_W)
     267#define QS_ALLEVENTS_W    (QS_INPUT_W | QS_POSTMESSAGE_W | QS_TIMER_W | QS_PAINT_W | QS_HOTKEY_W)
     268#define QS_ALLINPUT_W     (QS_ALLEVENTS_W | QS_SENDMESSAGE_W)
Note: See TracChangeset for help on using the changeset viewer.