( sbela | 2025. 09. 29., h – 10:01 )

Szerintem azért nem találsz ilyet mert ezt leprogramozni pár sor.

 

#include <iostream>
#include <windows.h>
#include <WinUser.h>
#include <Windowsx.h>

int main()
{
    MONITORINFOEX target;
    ZeroMemory(&target, sizeof(MONITORINFOEX));
    target.cbSize = sizeof(MONITORINFOEX);

    HMONITOR hMon = MonitorFromWindow(GetDesktopWindow(), MONITOR_DEFAULTTONEAREST);
    GetMonitorInfo(hMon, &target);

    std::wcout << target.szDevice << "\n";
}