The MASM Forum

General => The Campus => Topic started by: daydreamer on March 13, 2018, 06:33:17 AM

Title: how to use GDI to draw on second monitor4ktv?
Post by: daydreamer on March 13, 2018, 06:33:17 AM
is there a way to detect secondary screen and move window to secondary screen Before start rendering fullscreen game there?
Title: Re: how to use GDI to draw on second monitor4ktv?
Post by: aw27 on March 13, 2018, 06:56:25 AM
Quote from: daydreamer on March 13, 2018, 06:33:17 AM
is there a way to detect secondary screen and move window to secondary screen Before start rendering fullscreen game there?

EnumDisplayDevices + EnumDisplaySettings will give you all the information, namely where each screen starts and ends.
Note that the process is iterative, not all devices matter, but basically you should look for devices with flags DISPLAY_DEVICE_ATTACHED_TO_DESKTOP and DISPLAY_DEVICE_ACTIVE.