Line | |
---|
1 | /* $Id: hotkey.h,v 1.5 2000-02-25 16:58:33 cbratschi Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Hotkey class extra info
|
---|
5 | *
|
---|
6 | * Copyright 1998 Eric Kohl
|
---|
7 | * Copyright 1999 Christoph Bratschi
|
---|
8 | */
|
---|
9 |
|
---|
10 | #ifndef __WINE_HOTKEY_H
|
---|
11 | #define __WINE_HOTKEY_H
|
---|
12 |
|
---|
13 | typedef struct tagHOTKEY_INFO
|
---|
14 | {
|
---|
15 | COMCTL32_HEADER header;
|
---|
16 |
|
---|
17 | HFONT hFont;
|
---|
18 | BOOL bFocus;
|
---|
19 | INT nHeight;
|
---|
20 | BYTE bVKHotKey;
|
---|
21 | BYTE bfMods;
|
---|
22 | INT fwCombInv;
|
---|
23 | INT fwModInv;
|
---|
24 | POINT cursorPos;
|
---|
25 | BYTE bfModsDown;
|
---|
26 | } HOTKEY_INFO;
|
---|
27 |
|
---|
28 |
|
---|
29 | extern VOID HOTKEY_Register (VOID);
|
---|
30 | extern VOID HOTKEY_Unregister (VOID);
|
---|
31 |
|
---|
32 | #endif /* __WINE_HOTKEY_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.