source: trunk/include/win/winversion.h@ 10367

Last change on this file since 10367 was 3560, checked in by sandervl, 25 years ago

header updates

File size: 528 bytes
Line 
1/* $Id: winversion.h,v 1.2 2000-05-19 12:08:37 sandervl Exp $ */
2
3#ifndef __WINE_WINVERSION_H
4#define __WINE_WINVERSION_H
5
6typedef enum
7{
8 WIN31, /* Windows 3.1 */
9 WIN95, /* Windows 95 */
10 NT351, /* Windows NT 3.51 */
11 NT40, /* Windows NT 4.0 */
12 NB_WINDOWS_VERSIONS
13} WINDOWS_VERSION;
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19WINDOWS_VERSION VERSION_GetVersion(void);
20char *VERSION_GetVersionName(void);
21BOOL VERSION_OsIsUnicode(void);
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif /* __WINE_WINVERSION_H */
Note: See TracBrowser for help on using the repository browser.