2003-03-06 21:46:56 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
|
|
|
* Copyright (C) 2001-2003 The ScummVM project
|
2001-11-06 22:59:59 +00:00
|
|
|
*
|
2003-03-06 21:46:56 +00:00
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
2001-11-11 16:54:45 +00:00
|
|
|
*
|
2003-03-06 21:46:56 +00:00
|
|
|
* $Header$
|
2001-11-06 22:59:59 +00:00
|
|
|
*
|
|
|
|
*/
|
2001-11-20 07:13:01 +00:00
|
|
|
|
2002-06-02 20:28:09 +00:00
|
|
|
#ifndef _STDAFX_H
|
|
|
|
#define _STDAFX_H
|
|
|
|
|
2002-11-19 08:05:48 +00:00
|
|
|
#if defined(_WIN32_WCE) && _WIN32_WCE < 300
|
|
|
|
|
|
|
|
#define NONSTANDARD_PORT
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2001-11-20 07:13:01 +00:00
|
|
|
#if defined(NONSTANDARD_PORT)
|
|
|
|
|
|
|
|
#include <portdefs.h>
|
|
|
|
|
|
|
|
#elif defined(WIN32)
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-08-01 05:44:18 +00:00
|
|
|
#ifdef _MSC_VER
|
2003-07-31 18:35:01 +00:00
|
|
|
#pragma once
|
|
|
|
#pragma warning( disable : 4068 ) // turn off "unknown pragma" warning
|
|
|
|
#pragma warning( disable : 4244 ) // turn off "conversion type" warning
|
|
|
|
#pragma warning( disable : 4390 ) // turn oof "empty statement" warning for BS2 code
|
2003-08-01 05:41:07 +00:00
|
|
|
#endif
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2002-03-14 22:45:22 +00:00
|
|
|
#if !defined(_WIN32_WCE)
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
|
|
#define NOGDICAPMASKS
|
|
|
|
#define OEMRESOURCE
|
|
|
|
#define NONLS
|
|
|
|
#define NOICONS
|
|
|
|
#define NOMCX
|
|
|
|
#define NOPROFILER
|
|
|
|
#define NOKANJI
|
|
|
|
#define NOSERVICE
|
|
|
|
#define NOMETAFILE
|
|
|
|
#define NOCOMM
|
|
|
|
#define NOCRYPT
|
|
|
|
#define NOIME
|
|
|
|
#define NOATOM
|
|
|
|
#define NOCTLMGR
|
|
|
|
#define NOCLIPBOARD
|
|
|
|
#define NOMEMMGR
|
|
|
|
#define NOSYSMETRICS
|
|
|
|
#define NOMENUS
|
|
|
|
#define NOOPENFILE
|
|
|
|
#define NOWH
|
|
|
|
#define NOSOUND
|
|
|
|
#define NODRAWTEXT
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2002-03-14 22:45:22 +00:00
|
|
|
#endif
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <conio.h>
|
|
|
|
#include <assert.h>
|
2001-11-05 19:21:49 +00:00
|
|
|
#include <mmsystem.h>
|
2001-11-11 16:54:45 +00:00
|
|
|
#include <ctype.h>
|
2003-07-13 13:57:19 +00:00
|
|
|
#include <winuser.h>
|
2002-04-12 21:26:59 +00:00
|
|
|
#include <direct.h>
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2002-04-18 21:40:24 +00:00
|
|
|
#if defined(__MORPHOS__)
|
|
|
|
#include <devices/timer.h>
|
|
|
|
#undef CMD_INVALID
|
|
|
|
#endif
|
2002-05-05 19:06:51 +00:00
|
|
|
#if !defined(macintosh)
|
2001-10-09 14:30:12 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/uio.h>
|
2002-03-08 17:05:09 +00:00
|
|
|
#endif
|
2001-11-06 22:59:59 +00:00
|
|
|
#if !defined (__BEOS__)
|
2001-10-09 14:30:12 +00:00
|
|
|
#include <unistd.h>
|
2001-11-06 22:59:59 +00:00
|
|
|
#endif
|
2002-07-08 13:33:10 +00:00
|
|
|
#if defined(__QNXNTO__)
|
|
|
|
#include <strings.h> /* For strcasecmp */
|
|
|
|
#endif
|
2001-10-09 14:30:12 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <assert.h>
|
2001-10-09 19:12:49 +00:00
|
|
|
#include <ctype.h>
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
|
2001-10-09 17:38:20 +00:00
|
|
|
#endif
|
2002-03-06 12:24:56 +00:00
|
|
|
|
2002-06-02 20:28:09 +00:00
|
|
|
#endif
|