mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
a396029270
standard Windows names.
22 lines
324 B
C
22 lines
324 B
C
/*
|
|
* Hotkey class extra info
|
|
*
|
|
* Copyright 1998 Eric Kohl
|
|
*/
|
|
|
|
#ifndef __WINE_HOTKEY_H
|
|
#define __WINE_HOTKEY_H
|
|
|
|
typedef struct tagHOTKEY_INFO
|
|
{
|
|
HFONT hFont;
|
|
BOOL bFocus;
|
|
INT nHeight;
|
|
|
|
} HOTKEY_INFO;
|
|
|
|
|
|
extern VOID HOTKEY_Register (VOID);
|
|
extern VOID HOTKEY_Unregister (VOID);
|
|
|
|
#endif /* __WINE_HOTKEY_H */
|