The backspace is now handled in the WM_CHAR message.
[wine/dcerpc.git] / include / winversion.h
blob1ae952d734fa165a147f8dc1f05ef7cdbc2a789a
1 #ifndef __WINE_WINVERSION_H
2 #define __WINE_WINVERSION_H
4 #include "windef.h"
6 typedef enum
8 WIN31, /* Windows 3.1 */
9 WIN95, /* Windows 95 */
10 WIN98, /* Windows 98 */
11 NT351, /* Windows NT 3.51 */
12 NT40, /* Windows NT 4.0 */
13 NB_WINDOWS_VERSIONS
14 } WINDOWS_VERSION;
16 extern WINDOWS_VERSION VERSION_GetVersion(void);
17 extern char *VERSION_GetVersionName(void);
18 extern BOOL VERSION_OsIsUnicode(void);
20 #endif /* __WINE_WINVERSION_H */