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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/* ============================================================================
Hardware HotKeys plugin for Miranda NG.
Copyright © Eugene f2065, http://f2065.narod.ru, f2065 mail.ru, ICQ 35078112
This program is free software; you can redistribute it and / or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 - 1307, USA.
============================================================================ */
#include <SDKDDKVer.h>
#include <windows.h>
#include <newpluginapi.h>
#include <m_langpack.h>
#include <m_database.h>
#include <m_options.h>
#include <m_clistint.h>
#include <Strsafe.h>
#include "HwHotKeys_resource.h"
#include "HwHotKeys_version.h"
int initializeOptions(WPARAM, LPARAM);
INT_PTR CALLBACK OptDlgProc(HWND, UINT, WPARAM, LPARAM);
VOID HwHotKeys_PrintFullKeyname(DWORD);
BOOL HwHotKeys_CompareCurrentScancode(DWORD);
LRESULT CALLBACK key_hook(INT, WPARAM, LPARAM);
extern CLIST_INTERFACE *pcli;
extern HINSTANCE hInstance;
extern INT hLangpack;
extern HWND hDialogWnd; // ãëîáàëüíî èñïîëüçóåòñÿ äëÿ âûâîäà òóäà â ðåàëòàéìå ñêàíêîäîâ êëàâû, èç õóêà
extern HHOOK hHook;
extern DWORD code_Close_tmp;
extern DWORD code_HideShow_tmp;
extern DWORD code_ReadMsg_tmp;
extern DWORD code_Close;
extern DWORD code_HideShow;
extern DWORD code_ReadMsg;
extern DWORD key_code;
extern DWORD key_code_raw;
extern DWORD key_code_assign;
extern CHAR key_name_buffer[150];
extern const CHAR *key_tab[0x200];
extern const CHAR *t_CL;
extern const CHAR *t_CR;
extern const CHAR *t_CC;
extern const CHAR *t_AL;
extern const CHAR *t_AR;
extern const CHAR *t_AA;
extern const CHAR *t_WL;
extern const CHAR *t_WR;
extern const CHAR *t_WW;
extern const CHAR *t_SL;
extern const CHAR *t_SR;
extern const CHAR *t_SS;
// çíà÷åíèÿ ñâÿçàíû ñ áèòàìè â HwHotKeys_CompareCurrentScancode
enum : DWORD { key_flag_sr = 0x01000000 };
enum : DWORD { key_flag_cr = 0x02000000 };
enum : DWORD { key_flag_ar = 0x04000000 };
enum : DWORD { key_flag_wr = 0x08000000 };
enum : DWORD { key_flag_sl = 0x10000000 };
enum : DWORD { key_flag_cl = 0x20000000 };
enum : DWORD { key_flag_al = 0x40000000 };
enum : DWORD { key_flag_wl = 0x80000000 };
enum : DWORD { key_flag_ss = 0x00100000 };
enum : DWORD { key_flag_cc = 0x00200000 };
enum : DWORD { key_flag_aa = 0x00400000 };
enum : DWORD { key_flag_ww = 0x00800000 };
|