mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
5e0ffb93b3
This introduces winbits.[ch] in the engine, containing layer-independent code migrated from winlayer, including nedmalloc, ebacktrace1, OS version detection, and high-resolution profiling timers. sdlayer has been expanded to include the code from winbits under _WIN32. All uses of RENDERTYPEWIN in the source have been examined and changed to _WIN32 (or removed) where the block in question is layer-independent. git-svn-id: https://svn.eduke32.com/eduke32@3221 1a8010ca-5511-0410-912e-c29ae57300e0
28 lines
698 B
C
28 lines
698 B
C
// Windows layer-independent code
|
|
|
|
#include <compat.h>
|
|
|
|
#define WindowClass "buildapp"
|
|
|
|
extern int32_t backgroundidle; // set to 1 to tell winlayer to go to idle priority when inactive
|
|
|
|
extern int64_t win_timerfreq;
|
|
|
|
extern char silentvideomodeswitch;
|
|
|
|
extern BOOL CheckWinVersion(void);
|
|
extern void win_allowtaskswitching(int32_t onf);
|
|
extern int32_t win_checkinstance(void);
|
|
|
|
extern int32_t win_inittimer(void);
|
|
extern uint64_t win_gethiticks(void);
|
|
|
|
extern void win_open(void);
|
|
extern void win_init(void);
|
|
extern void win_setvideomode(int32_t c);
|
|
extern void win_uninit(void);
|
|
extern void win_close(void);
|
|
|
|
extern void ShowErrorBox(const char *m);
|
|
|
|
extern LPTSTR GetWindowsErrorMsg(DWORD code);
|