uvmac/src/UI/CONTROLM.h
InvisibleUp f485b2ef4c Rewrote video rendering code to leverage SDL
Right now the program starts up and immediately exits. That naturally
needs to be fixed. I'll do that soon.
2020-07-01 23:13:45 -04:00

37 lines
650 B
C

/*
CONTROL Mode
*/
#ifndef CONTROLM_H
#define CONTROLM_H
#include "SYSDEPNS.h"
#include "ERRCODES.h"
#ifndef CheckRomCheckSum
#define CheckRomCheckSum 1
#endif
#ifndef NeedRequestIthDisk
#define NeedRequestIthDisk 0
#endif
/* Globals */
extern uimr SpecialModes;
extern bool NeedWholeScreenDraw;
extern uint8_t * CntrlDisplayBuff;
extern bool ControlKeyPressed;
extern bool RequestInsertDisk;
extern bool WantMagnify;
extern bool RunInBackground;
extern bool SpeedStopped;
extern bool WantFullScreen;
/* Public Functions */
void MacMsgOverride(char *title, char *msg);
MacErr_t ROM_IsValid(void);
bool WaitForRom(void);
#endif // CONTROLM_H