ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

hotkey.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.