(Xbox OG) Buildfixes

This commit is contained in:
twinaphex 2019-02-07 05:42:23 +01:00
parent 54a9a3bd1d
commit e612773645
2 changed files with 3 additions and 3 deletions

View File

@ -63,6 +63,8 @@ void create_gdi_context(HWND hwnd, bool *quit);
bool gdi_has_menu_frame(void);
bool win32_get_video_output(DEVMODE *dm, int mode, size_t len);
#if !defined(__WINRT__)
bool win32_window_init(WNDCLASSEX *wndclass, bool fullscreen, const char *class_name);
@ -101,8 +103,6 @@ void win32_check_window(bool *quit,
void win32_set_window(unsigned *width, unsigned *height,
bool fullscreen, bool windowed_full, void *rect_data);
bool win32_get_video_output(DEVMODE *dm, int mode, size_t len);
void win32_get_video_output_size(
unsigned *width, unsigned *height);

View File

@ -37,7 +37,7 @@
#include <android/log.h>
#endif
#if _WIN32
#if defined(_WIN32) && !defined(_XBOX)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif