The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => WINDOWS.INC Project => Topic started by: Ghirai on December 03, 2007, 09:12:18 PM

Title: KBDLLHOOKSTRUCT
Post by: Ghirai on December 03, 2007, 09:12:18 PM
MSDN says it looks like this:

typedef struct {
    DWORD vkCode;
    DWORD scanCode;
    DWORD flags;
    DWORD time;
    ULONG_PTR dwExtraInfo;
} KBDLLHOOKSTRUCT, *PKBDLLHOOKSTRUCT;


http://msdn2.microsoft.com/en-us/library/ms644967.aspx


So the masm32 struct would be (at least that's what i'm using):

KBDLLHOOKSTRUCT struct
vkCode dword ?
scanCode dword ?
flags dword ?
time dword ?
dwExtraInfo dword ?
KBDLLHOOKSTRUCT ends