- many new Path* stubs
[wine] / include / winversion.h
1 #ifndef __WINE_WINVERSION_H
2 #define __WINE_WINVERSION_H
3
4 #include "windef.h"
5
6 typedef enum
7 {
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;
15
16 extern WINDOWS_VERSION VERSION_GetVersion(void); 
17 extern char *VERSION_GetVersionName(void); 
18 extern BOOL VERSION_OsIsUnicode(void);
19 extern DWORD VERSION_AppWinVer(void);
20
21 #endif  /* __WINE_WINVERSION_H */