source: trunk/include/win/hotkey.h@ 983

Last change on this file since 983 was 983, checked in by cbratschi, 26 years ago

* empty log message *

File size: 524 bytes
Line 
1/* $Id: hotkey.h,v 1.3 1999-09-19 13:26:47 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
13typedef struct tagHOTKEY_INFO
14{
15 HFONT hFont;
16 BOOL bFocus;
17 INT nHeight;
18 BYTE bVKHotKey;
19 BYTE bfMods;
20 INT fwCombInv;
21 INT fwModInv;
22 POINT cursorPos;
23} HOTKEY_INFO;
24
25
26extern VOID HOTKEY_Register (VOID);
27extern VOID HOTKEY_Unregister (VOID);
28
29#endif /* __WINE_HOTKEY_H */
Note: See TracBrowser for help on using the repository browser.