mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
* Fixing upper/lower case for includes types.h, zconf.h and zlib.h were renamed so that global includes like Types.h are not used.
30 lines
524 B
C
30 lines
524 B
C
#ifndef __SGP_
|
|
#define __SGP_
|
|
|
|
#include "local.h"
|
|
#include "types.h"
|
|
#include "timer.h"
|
|
#include "DEBUG.H"
|
|
|
|
#include "video.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern BOOLEAN gfProgramIsRunning; // Turn this to FALSE to exit program
|
|
extern CHAR8 gzCommandLine[100]; // Command line given
|
|
extern BOOLEAN gfDontUseDDBlits; // GLOBAL FOR USE OF DD BLITTING
|
|
|
|
|
|
// function prototypes
|
|
void SGPExit(void);
|
|
void ShutdownWithErrorBox(CHAR8 *pcMessage);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|