mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
68a0ead5f0
* - 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.
30 lines
451 B
C
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_
|
|
|