home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 11 / PC World Interactive 11.iso / share / multimed / effect / Common Files / WinPrefix.h < prev   
Encoding:
C/C++ Source or Header  |  1998-03-12  |  976 b   |  31 lines

  1. // MWPrefix.h
  2. // prefix file for our Windows projects
  3.  
  4. #ifndef __Prefix_File__
  5. #define __Prefix_File__
  6.  
  7. #if !defined(_MSC_VER)
  8. #include <Win32Headers.mch>
  9. #else
  10. #include <ConditionalMacros.h>
  11. #endif
  12.  
  13. // Definitions for the project
  14. #define DEBUG                            0
  15. #define ONLY_ENCODED_SCRIPTS            0
  16. #define PROFILING_ON                    0
  17. #undef QD3D_NO_DIRECTDRAW
  18.  
  19. #define QD3D_AVAIL                        !TARGET_CPU_68K
  20. #define SOUNDSPROCKET_AVAIL                TARGET_CPU_PPC
  21. #define PASCAL_RTN
  22.  
  23. // if we're being compiled by Microsoft Visual C++, turn off some warnings
  24. #if defined(_MSC_VER)
  25.     #pragma warning (disable: 4068)        // ignore unknown pragmas
  26.     #pragma warning (disable: 4244)        // ignore conversion from "long" to "short", possible loss of data
  27.     #pragma warning (disable: 4761)        // ignore integral size mismatch in argument: conversion supplied
  28.     #pragma warning (disable: 4129)        // ignore 'p': unrecognized character escape sequence
  29. #endif    // defined(_MSC_VER)
  30.  
  31. #endif    // __Prefix_File__