This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
CnC_Tiberian_Dawn/WATCOM.H

78 lines
3.6 KiB
C
Raw Normal View History

/*
** Command & Conquer(tm)
** Copyright 2025 Electronic Arts Inc.
**
** 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 3 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, see <http://www.gnu.org/licenses/>.
*/
/* $Header: F:\projects\c&c\vcs\code\watcom.h_v 2.13 16 Oct 1995 16:45:58 JOE_BOSTIC $ */
/***********************************************************************************************
*** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S ***
***********************************************************************************************
* *
* Project Name : Command & Conquer *
* *
* File Name : WATCOM.H *
* *
* Programmer : Joe L. Bostic *
* *
* Start Date : 03/12/95 *
* *
* Last Update : March 12, 1995 [JLB] *
* *
*---------------------------------------------------------------------------------------------*
* Functions: *
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#ifndef WATCOM_H
#define WATCOM_H
// Turn all warnings into errors.
#pragma warning * 0
// Disables warning when "sizeof" is used on an object with virtual functions.
#pragma warning 549 9
// Disable the "Integral value may be truncated during assignment or initialization".
#pragma warning 389 9
// Allow constructing a temporary to be used as a parameter.
#pragma warning 604 9
// Disable the construct resolved as an expression warning.
#pragma warning 595 9
// Disable the strange "construct resolved as a declaration/type" warning.
#pragma warning 594 9
// Disable the "pre-compiled header file cannot be used" warning.
#pragma warning 698 9
// Disable the "temporary object used to initialize a non-constant reference" warning.
#pragma warning 665 9
// Disable the "pointer or reference truncated by cast. Cast is supposed to REMOVE warnings, not create them.
#pragma warning 579 9
// Disable the warning about moving empty constructors/destructors to the class declaration.
#pragma warning 657 9
// Turns off unreferenced function parameter warning.
//#pragma off(unreferenced)
// Turns off "expression with side effect in sizeof()". This is needed if memchecker is used.
#pragma warning 472 9
#endif