Files
openscreen/electron/native/wgc-capture/src/monitor_utils.h
T
2026-05-10 15:11:16 +02:00

15 lines
232 B
C++

#pragma once
#include <Windows.h>
#include <cstdint>
struct MonitorBounds {
int x = 0;
int y = 0;
int width = 0;
int height = 0;
};
HMONITOR findMonitorForCapture(int64_t displayId, const MonitorBounds* bounds);