home *** CD-ROM | disk | FTP | other *** search
- // MWPrefix.h
- // prefix file for our Windows projects
-
- #ifndef __Prefix_File__
- #define __Prefix_File__
-
- #if !defined(_MSC_VER)
- #include <Win32Headers.mch>
- #else
- #include <ConditionalMacros.h>
- #endif
-
- // Definitions for the project
- #define DEBUG 0
- #define ONLY_ENCODED_SCRIPTS 0
- #define PROFILING_ON 0
- #undef QD3D_NO_DIRECTDRAW
-
- #define QD3D_AVAIL !TARGET_CPU_68K
- #define SOUNDSPROCKET_AVAIL TARGET_CPU_PPC
- #define PASCAL_RTN
-
- // if we're being compiled by Microsoft Visual C++, turn off some warnings
- #if defined(_MSC_VER)
- #pragma warning (disable: 4068) // ignore unknown pragmas
- #pragma warning (disable: 4244) // ignore conversion from "long" to "short", possible loss of data
- #pragma warning (disable: 4761) // ignore integral size mismatch in argument: conversion supplied
- #pragma warning (disable: 4129) // ignore 'p': unrecognized character escape sequence
- #endif // defined(_MSC_VER)
-
- #endif // __Prefix_File__