mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Obsolete and doesn't work * Remove gbPixelDepth * Remove 8-bit to 8-bit blitters * FileNameForBPP now only calls strcopy
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
|