mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2024-12-02 22:36:16 +08:00
Fixed signedness of MoniorCount
This commit is contained in:
parent
97e68deea5
commit
9633e4576d
@ -136,7 +136,7 @@ static BOOL xf_is_monitor_id_active(xfContext* xfc, UINT32 id)
|
||||
|
||||
BOOL xf_detect_monitors(xfContext* xfc, UINT32* pMaxWidth, UINT32* pMaxHeight)
|
||||
{
|
||||
int i;
|
||||
UINT32 i;
|
||||
int nmonitors = 0;
|
||||
int monitor_index = 0;
|
||||
BOOL primaryMonitorFound = FALSE;
|
||||
|
@ -153,7 +153,7 @@ void xf_SetWindowMinimized(xfContext* xfc, xfWindow* window)
|
||||
|
||||
void xf_SetWindowFullscreen(xfContext* xfc, xfWindow* window, BOOL fullscreen)
|
||||
{
|
||||
int i;
|
||||
UINT32 i;
|
||||
rdpSettings* settings = xfc->context.settings;
|
||||
int startX, startY;
|
||||
UINT32 width = window->width;
|
||||
|
@ -937,7 +937,7 @@ struct rdp_settings
|
||||
UINT64 padding0384[384 - 323]; /* 323 */
|
||||
|
||||
/* Client Monitor Data */
|
||||
ALIGN64 int MonitorCount; /* 384 */
|
||||
ALIGN64 UINT32 MonitorCount; /* 384 */
|
||||
ALIGN64 UINT32 MonitorDefArraySize; /* 385 */
|
||||
ALIGN64 rdpMonitor* MonitorDefArray; /* 386 */
|
||||
ALIGN64 BOOL SpanMonitors; /* 387 */
|
||||
|
Loading…
Reference in New Issue
Block a user