1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/*
* File: WinHdr.h
* Summary: OS specific stuff for inclusion into AppHdr.h.
* Written by: Jesse Jones
*
* Copyright 1999 Jesse Jones.
*
* Change History (most recent first):
*
* <1> 5/30/99 JDJ Created.
*/
#ifndef WINHDR_H
#define WINHDR_H
// ===================================================================================
// Windows Includes
// ===================================================================================
#define WIN32_LEAN_AND_MEAN // exclude some of the less common APIs
#define NOSERVICE
#define NOMCX
#define NOIME
#define STRICT 1 // enable as much type checking as the lame Windows API will allow
#define NOMINMAX // don't let Windows define (lower case!) min and max macros (conflicts with STL)
#include <windows.h>
#include <wtypes.h>
#include <commdlg.h>
#include <tchar.h>
// ===================================================================================
// MSVC Warnings (I'm not sure if these will fly with Crawl)
// ===================================================================================
#if _MSC_VER
#ifndef ENABLE_EXTRA_WARNINGS
#define ENABLE_EXTRA_WARNINGS 1 // if non-zero selected level 4 warnings are enabled
#endif
#if ENABLE_EXTRA_WARNINGS
#pragma warning(error : 4057) // The pointer expressions used with the given operator had different base types.
// #pragma warning(error : 4100) // The given formal parameter was never referenced in the body of the function for which it was declared.
#pragma warning(error : 4130) // The operator was used with the address of a string literal.
#pragma warning(error : 4131) // The specified function declaration is not in prototype form.
#pragma warning(error : 4132) // The constant was not initialized.
#pragma warning(error : 4152) // A pointer to a function was converted to a pointer to data, or visa versa.
#pragma warning(error : 4208) // nonstandard extension used : delete [exp] - exp evaluated but ignored
#pragma warning(error : 4211) // nonstandard extension used : redefined extern to static
#pragma warning(error : 4212) // nonstandard extension used : function declaration used ellipsis
#pragma warning(error : 4222) // nonstandard extension used : 'identifier' : 'static' should not be used on member functions defined at file scope
#pragma warning(error : 4223) // nonstandard extension used : non-lvalue array converted to pointer
#pragma warning(error : 4355) // 'this' : used in base member initializer list
#pragma warning(error : 4663) // C++ language change: to explicitly specialize class template 'identifier' use the following syntax:
#pragma warning(error : 4665) // C++ language change: assuming 'declaration' is an explicit specialization of a function template
#pragma warning(error : 4701) // local variable 'name' may be used without having been initialized
#pragma warning(error : 4705) // statement has no effect
#pragma warning(error : 4706) // assignment within conditional expression
#endif
#pragma warning(disable : 4800) // casting integer to bool
#pragma warning(disable : 4786) // identifier was truncated to '255' characters in the browser
#endif
#endif
|