Ignore:
Timestamp:
Sep 28, 2001, 4:08:17 PM (24 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/winuser.h

    r6858 r6859  
    8282    INT       code;
    8383} DEBUGHOOKINFO, *LPDEBUGHOOKINFO;
     84
     85/*
     86 * Low level hook flags
     87 */
     88#define LLKHF_EXTENDED       0x00000001
     89#define LLKHF_INJECTED       0x00000010
     90#define LLKHF_ALTDOWN        0x00000020
     91#define LLKHF_UP             0x00000080
     92
     93#define LLMHF_INJECTED       0x00000001
     94
     95/*
     96 * Structure used by WH_KEYBOARD_LL
     97 */
     98typedef struct tagKBDLLHOOKSTRUCT {
     99    DWORD   vkCode;
     100    DWORD   scanCode;
     101    DWORD   flags;
     102    DWORD   time;
     103    DWORD   dwExtraInfo;
     104} KBDLLHOOKSTRUCT, *LPKBDLLHOOKSTRUCT, *PKBDLLHOOKSTRUCT;
     105
     106/*
     107 * Structure used by WH_MOUSE_LL
     108 */
     109typedef struct tagMSLLHOOKSTRUCT {
     110    POINT   pt;
     111    DWORD   mouseData;
     112    DWORD   flags;
     113    DWORD   time;
     114    DWORD   dwExtraInfo;
     115} MSLLHOOKSTRUCT, *LPMSLLHOOKSTRUCT, *PMSLLHOOKSTRUCT;
     116
    84117
    85118#define HKL_PREV   0
     
    234267#define WPF_SETMINPOSITION      0x0001
    235268#define WPF_RESTORETOMAXIMIZED  0x0002
     269
    236270
    237271/***** Dialogs *****/
Note: See TracChangeset for help on using the changeset viewer.