blob: 88919daeb58665f21786b4b1cfc102bde19c7096 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// HotKey.h: interface for the CHotKey class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_HOTKEY_H__82523B98_0E49_4B2A_8206_A4262D29C3C8__INCLUDED_)
#define AFX_HOTKEY_H__82523B98_0E49_4B2A_8206_A4262D29C3C8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "gen_hotkeys.h"
struct HOTKEY_DATA
{
DWORD dwHotKey;
int iCommand;
wchar_t *szCommand;
};
struct HOTKEY
{
HOTKEY_DATA hkd;
ATOM atom;
BOOL failed;
};
int RegisterHotkey(HOTKEY *hk);
void UnregisterHotkey(HOTKEY *hk);
UINT GetModKeys(DWORD dwHotKey);
#endif // !defined(AFX_HOTKEY_H__82523B98_0E49_4B2A_8206_A4262D29C3C8__INCLUDED_)
|