mirror of
https://github.com/reactos/wine.git
synced 2024-11-30 07:00:30 +00:00
1ed4ecffa8
Removed warnings. Made the include files self-sufficient. Some Solaris fixes.
25 lines
345 B
C
25 lines
345 B
C
/*
|
|
* Hotkey class extra info
|
|
*
|
|
* Copyright 1998 Eric Kohl
|
|
*/
|
|
|
|
#ifndef __WINE_HOTKEY_H
|
|
#define __WINE_HOTKEY_H
|
|
|
|
#include "windef.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 */
|