Merge 13831:14550 from trunk
[reactos.git] / rosapps / mc / pc / util_win32.h
1 /* util.Win32.h - Header
2 Utilities - Win32 utilities (Windows NT and Windows '95)
3 Copyright (C) 1994, 1995, 1996 the Free Software Foundation.
4
5 Written 1996 by Juan Grigera<grigera@isis.unlp.edu.ar>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 /* Prototypes */
23 int win32_GetPlatform ();
24 int win32_GetEXEType (const char* a_szFileName);
25 int win32_GetVersionEx ();
26
27
28 /* Constants */
29 enum {
30 OS_WinNT = VER_PLATFORM_WIN32_NT, /* windows.h values */
31 OS_Win95 = VER_PLATFORM_WIN32_WINDOWS,
32 };
33
34 enum {
35 EXE_Unknown,
36 EXE_win16,
37 EXE_win32CUI,
38 EXE_win32GUI,
39 EXE_otherCUI,
40 EXE_Error
41 };
42