2012-11-25 04:26:37 +00:00
|
|
|
// Windows layer-independent code
|
|
|
|
|
2017-02-25 08:15:36 +00:00
|
|
|
#include "compat.h"
|
2012-11-25 04:26:37 +00:00
|
|
|
|
2019-08-07 22:44:17 +00:00
|
|
|
#ifdef APPNAME
|
|
|
|
# define WindowClass APPNAME
|
|
|
|
#else
|
|
|
|
# define WindowClass "buildapp"
|
|
|
|
#endif
|
2012-11-25 04:26:37 +00:00
|
|
|
|
|
|
|
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 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);
|
|
|
|
|
2013-03-21 09:48:21 +00:00
|
|
|
extern int32_t addsearchpath_ProgramFiles(const char *p);
|
2014-11-26 04:39:23 +00:00
|
|
|
|
2015-02-11 05:21:50 +00:00
|
|
|
extern int32_t win_buildargs(char **argvbuf);
|