Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenhotkey.h
Go to the documentation of this file.
00001 #pragma once 00002 00003 typedef struct _HOT_KEY 00004 { 00005 struct _ETHREAD *pThread; 00006 HWND hWnd; 00007 UINT fsModifiers; 00008 UINT vk; 00009 INT id; 00010 struct _HOT_KEY *pNext; 00011 } HOT_KEY, *PHOT_KEY; 00012 00013 /* Special Hot Keys */ 00014 #define IDHK_F12 -5 00015 #define IDHK_SHIFTF12 -6 00016 #define IDHK_WINKEY -7 00017 #define IDHK_REACTOS -8 00018 00019 VOID FASTCALL UnregisterWindowHotKeys(PWND Window); 00020 VOID FASTCALL UnregisterThreadHotKeys(struct _ETHREAD *pThread); 00021 BOOL NTAPI co_UserProcessHotKeys(WORD wVk, BOOL bIsDown); 00022 UINT FASTCALL DefWndGetHotKey(HWND hwnd); 00023 INT FASTCALL DefWndSetHotKey(PWND pWnd, WPARAM wParam); 00024 00025 /* EOF */ Generated on Mon May 28 2012 04:38:31 for ReactOS by
1.7.6.1
|