Added cs to the list of languages
[midnight-commander.git] / nt / util.Win32.h
blob2ed74c7fea119e3f7028e1e0f757e7d19c91df52
1 /* util.Win32.h - Header
2 Utilities - Win32 utilities (Windows NT and Windows '95)
3 Copyright (C) 1994, 1995, 1996 the Free Software Foundation.
5 Written 1996 by Juan Grigera<grigera@isis.unlp.edu.ar>
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.
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.
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.
22 /* Prototypes */
23 int win32_GetPlatform ();
24 int win32_GetEXEType (const char* a_szFileName);
25 int win32_GetVersionEx ();
28 /* Constants */
29 enum {
30 OS_WinNT = VER_PLATFORM_WIN32_NT, /* windows.h values */
31 OS_Win95 = VER_PLATFORM_WIN32_WINDOWS,
34 enum {
35 EXE_Unknown,
36 EXE_win16,
37 EXE_win32CUI,
38 EXE_win32GUI,
39 EXE_otherCUI,
40 EXE_Error