mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
(MSVC) Buildfix
This commit is contained in:
parent
0bd8ffef04
commit
b94a3928e4
@ -230,43 +230,6 @@ typedef struct DISPLAYCONFIG_PATH_INFO_CUSTOM
|
|||||||
typedef LONG (WINAPI *QUERYDISPLAYCONFIG)(UINT32, UINT32*, DISPLAYCONFIG_PATH_INFO_CUSTOM*, UINT32*, DISPLAYCONFIG_MODE_INFO_CUSTOM*, UINT32*);
|
typedef LONG (WINAPI *QUERYDISPLAYCONFIG)(UINT32, UINT32*, DISPLAYCONFIG_PATH_INFO_CUSTOM*, UINT32*, DISPLAYCONFIG_MODE_INFO_CUSTOM*, UINT32*);
|
||||||
typedef LONG (WINAPI *GETDISPLAYCONFIGBUFFERSIZES)(UINT32, UINT32*, UINT32*);
|
typedef LONG (WINAPI *GETDISPLAYCONFIGBUFFERSIZES)(UINT32, UINT32*, UINT32*);
|
||||||
|
|
||||||
/* TODO/FIXME - globals */
|
|
||||||
bool g_win32_restore_desktop = false;
|
|
||||||
static bool taskbar_is_created = false;
|
|
||||||
bool g_win32_inited = false;
|
|
||||||
|
|
||||||
unsigned g_win32_resize_width = 0;
|
|
||||||
unsigned g_win32_resize_height = 0;
|
|
||||||
|
|
||||||
ui_window_win32_t main_window;
|
|
||||||
|
|
||||||
static HMONITOR win32_monitor_last;
|
|
||||||
static HMONITOR win32_monitor_all[MAX_MONITORS];
|
|
||||||
|
|
||||||
typedef struct win32_common_state
|
|
||||||
{
|
|
||||||
int pos_x;
|
|
||||||
int pos_y;
|
|
||||||
unsigned pos_width;
|
|
||||||
unsigned pos_height;
|
|
||||||
unsigned taskbar_message;
|
|
||||||
bool quit;
|
|
||||||
unsigned monitor_count;
|
|
||||||
bool resized;
|
|
||||||
} win32_common_state_t;
|
|
||||||
|
|
||||||
static win32_common_state_t win32_st =
|
|
||||||
{
|
|
||||||
CW_USEDEFAULT, /* pos_x */
|
|
||||||
CW_USEDEFAULT, /* pos_y */
|
|
||||||
0, /* pos_width */
|
|
||||||
0, /* pos_height */
|
|
||||||
0, /* taskbar_message */
|
|
||||||
false, /* quit */
|
|
||||||
0, /* monitor_count */
|
|
||||||
false /* resized */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Power Request APIs */
|
/* Power Request APIs */
|
||||||
|
|
||||||
#if !defined(_XBOX) && (_MSC_VER == 1310)
|
#if !defined(_XBOX) && (_MSC_VER == 1310)
|
||||||
@ -314,6 +277,45 @@ typedef REASON_CONTEXT POWER_REQUEST_CONTEXT, *PPOWER_REQUEST_CONTEXT, *LPPOWER_
|
|||||||
#define INT_PTR_COMPAT INT_PTR
|
#define INT_PTR_COMPAT INT_PTR
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* TODO/FIXME - globals */
|
||||||
|
bool g_win32_restore_desktop = false;
|
||||||
|
static bool taskbar_is_created = false;
|
||||||
|
bool g_win32_inited = false;
|
||||||
|
|
||||||
|
unsigned g_win32_resize_width = 0;
|
||||||
|
unsigned g_win32_resize_height = 0;
|
||||||
|
|
||||||
|
ui_window_win32_t main_window;
|
||||||
|
|
||||||
|
static HMONITOR win32_monitor_last;
|
||||||
|
static HMONITOR win32_monitor_all[MAX_MONITORS];
|
||||||
|
|
||||||
|
typedef struct win32_common_state
|
||||||
|
{
|
||||||
|
int pos_x;
|
||||||
|
int pos_y;
|
||||||
|
unsigned pos_width;
|
||||||
|
unsigned pos_height;
|
||||||
|
unsigned taskbar_message;
|
||||||
|
bool quit;
|
||||||
|
unsigned monitor_count;
|
||||||
|
bool resized;
|
||||||
|
} win32_common_state_t;
|
||||||
|
|
||||||
|
static win32_common_state_t win32_st =
|
||||||
|
{
|
||||||
|
CW_USEDEFAULT, /* pos_x */
|
||||||
|
CW_USEDEFAULT, /* pos_y */
|
||||||
|
0, /* pos_width */
|
||||||
|
0, /* pos_height */
|
||||||
|
0, /* taskbar_message */
|
||||||
|
false, /* quit */
|
||||||
|
0, /* monitor_count */
|
||||||
|
false /* resized */
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
bool win32_taskbar_is_created(void)
|
bool win32_taskbar_is_created(void)
|
||||||
{
|
{
|
||||||
return taskbar_is_created;
|
return taskbar_is_created;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user