mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 08:00:55 +02:00
More compile fixes - upper case includes
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
||||
|
||||
#ifndef BUFFER_H
|
||||
#include "buffer.h"
|
||||
#include "BUFFER.H"
|
||||
#endif
|
||||
|
||||
/*=========================================================================*/
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
*-------------------------------------------------------------------------*
|
||||
* Functions: *
|
||||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
||||
#include "gbuffer.h"
|
||||
#include "GBUFFER.H"
|
||||
|
||||
/*=========================================================================*/
|
||||
/* The following PRIVATE functions are in this file: */
|
||||
|
||||
@@ -41,7 +41,10 @@
|
||||
|
||||
//#include "function.h"
|
||||
//#include "ems.h"
|
||||
#ifdef WINDOWS
|
||||
#include <keyboard.h>
|
||||
#endif
|
||||
|
||||
#include "dipthong.h"
|
||||
|
||||
/***************************************************************************
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
||||
|
||||
#ifndef GBUFFER_H
|
||||
#include "gbuffer.h"
|
||||
#include "GBUFFER.H"
|
||||
#include "misc.h"
|
||||
#endif
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include "gbuffer.h"
|
||||
#include "GBUFFER.H"
|
||||
#include "MISC.H"
|
||||
#include "WSA.H"
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
||||
|
||||
#ifndef GBUFFER_H
|
||||
#include "gbuffer.h"
|
||||
#include "GBUFFER.H"
|
||||
#include "misc.h"
|
||||
#endif
|
||||
//#pragma inline
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
#include "misc.h"
|
||||
#include "MISC.H"
|
||||
|
||||
|
||||
|
||||
@@ -180,4 +180,4 @@ RandNumb DD 12349876H
|
||||
;----------------------------------------------------------------------------
|
||||
|
||||
END
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -34,13 +34,18 @@
|
||||
#ifndef MISC_H
|
||||
#define MISC_H
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN // eliminates unecessary definitions in windows.h
|
||||
|
||||
#ifndef _WIN32 // Denzil 6/2/98 Watcom 11.0 complains without this check
|
||||
#define _WIN32
|
||||
// NO! This is wtong
|
||||
//#define _WIN32
|
||||
#endif // _WIN32
|
||||
|
||||
#ifdef WIN32
|
||||
#define WIN32_LEAN_AND_MEAN // eliminates unecessary definitions in windows.h
|
||||
#include <windows.h>
|
||||
#include <windowsx.h>
|
||||
//#include <ddraw.h>
|
||||
#endif
|
||||
|
||||
/*========================= C++ Routines ==================================*/
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include "gbuffer.h"
|
||||
#include "GBUFFER.H"
|
||||
#include "misc.h"
|
||||
|
||||
long __cdecl Buffer_To_Buffer(GraphicViewPortClass* vp, int x, int y, int w, int h, void* buffer, int length)
|
||||
|
||||
@@ -48,8 +48,9 @@
|
||||
#include <windows.h>
|
||||
#include <windowsx.h>
|
||||
#else
|
||||
#include <windows.h>
|
||||
#include <windowsx.h>
|
||||
// THIS BLOCK IS WHOLE WAYS OF WRONG
|
||||
// #include <windows.h>
|
||||
// #include <windowsx.h>
|
||||
#endif
|
||||
|
||||
// Note: SKB 4/11/94
|
||||
|
||||
Reference in New Issue
Block a user