mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 12:06:52 +00:00
Midnight Commander for Win32
svn path=/trunk/; revision=2456
This commit is contained in:
parent
2a2768dea3
commit
e5c0c7185e
222 changed files with 102081 additions and 0 deletions
42
rosapps/mc/pc/util_win32.h
Normal file
42
rosapps/mc/pc/util_win32.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* util.Win32.h - Header
|
||||
Utilities - Win32 utilities (Windows NT and Windows '95)
|
||||
Copyright (C) 1994, 1995, 1996 the Free Software Foundation.
|
||||
|
||||
Written 1996 by Juan Grigera<grigera@isis.unlp.edu.ar>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
/* Prototypes */
|
||||
int win32_GetPlatform ();
|
||||
int win32_GetEXEType (const char* a_szFileName);
|
||||
int win32_GetVersionEx ();
|
||||
|
||||
|
||||
/* Constants */
|
||||
enum {
|
||||
OS_WinNT = VER_PLATFORM_WIN32_NT, /* windows.h values */
|
||||
OS_Win95 = VER_PLATFORM_WIN32_WINDOWS,
|
||||
};
|
||||
|
||||
enum {
|
||||
EXE_Unknown,
|
||||
EXE_win16,
|
||||
EXE_win32CUI,
|
||||
EXE_win32GUI,
|
||||
EXE_otherCUI,
|
||||
EXE_Error
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue