raze-gles/source/build/include/osd.h
Mitchell Richters 68a0ead5f0
- fix Linux builds following reset of master branch. (#44)
* - fix Linux builds following reset of master branch.

* - fix Linux Clang CI failure.

* - change '#ifdef __linux__' to '#ifndef _WIN32' as requested/required.

* - initialise batchrun in proper spot.
2020-05-05 10:45:21 +03:00

30 lines
451 B
C

// On-screen display (ie. console)
// for the Build Engine
// by Jonathon Fowler (jf@jonof.id.au)
#ifndef osd_h_
#define osd_h_
#include <functional>
#include "compat.h"
#include "printf.h"
#include "c_dispatch.h"
#define OSDCMD_OK CCMD_OK
#define OSDCMD_SHOWHELP CCMD_SHOWHELP
// void OSD_Draw();
// executes buffered commands
void C_RunDelayedCommands();
inline void OSD_DispatchQueued(void)
{
C_RunDelayedCommands();
}
#endif // osd_h_