projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added tracking support and fixed loading of resource strings.
[wine]
/
include
/
hotkey.h
1
/*
2
* Hotkey class extra info
3
*
4
* Copyright 1998 Eric Kohl
5
*/
6
7
#ifndef __WINE_HOTKEY_H
8
#define __WINE_HOTKEY_H
9
10
11
typedef struct tagHOTKEY_INFO
12
{
13
HFONT32 hFont;
14
BOOL32 bFocus;
15
INT32 nHeight;
16
17
} HOTKEY_INFO;
18
19
20
extern void HOTKEY_Register (void);
21
22
#endif /* __WINE_HOTKEY_H */