1

我正在尝试设置一个小程序来根据当前房间亮度调整监视器亮度。

我按照 MSDN 的说明进行了设置:

cout << "Legen Sie das Fenster bitte auf den zu steuernden Monitor.\n";
system("PAUSE");
HMONITOR hMon = NULL;
char OldConsoleTitle[1024];
char NewConsoleTitle[1024];
GetConsoleTitle(OldConsoleTitle, 1024);
SetConsoleTitle("CMDWindow7355608");
Sleep(40);
HWND hWnd = FindWindow(NULL, "CMDWindow7355608");
SetConsoleTitle(OldConsoleTitle);
hMon = MonitorFromWindow(hWnd, MONITOR_DEFAULTTOPRIMARY);


DWORD cPhysicalMonitors;
LPPHYSICAL_MONITOR pPhysicalMonitors = NULL;
BOOL bSuccess = GetNumberOfPhysicalMonitorsFromHMONITOR(
    hMon,
    &cPhysicalMonitors
    );

if(bSuccess)
{
    pPhysicalMonitors = (LPPHYSICAL_MONITOR)malloc(
        cPhysicalMonitors* sizeof(PHYSICAL_MONITOR));

    if(pPhysicalMonitors!=NULL)
    {
        LPDWORD min = NULL, max = NULL, current = NULL;
        GetPhysicalMonitorsFromHMONITOR(hMon, cPhysicalMonitors, pPhysicalMonitors);

        HANDLE pmh = pPhysicalMonitors[0].hPhysicalMonitor;

        if(!GetMonitorBrightness(pmh, min, current, max))
        {
            cout << "Fehler: " << GetLastError() << endl;
            system("PAUSE");
            return 0;
        }

        //cout << "Minimum: " << min << endl << "Aktuell: " << current << endl << "Maximum: " << max << endl;

        system("PAUSE");
    }

}

但问题是:每次我尝试使用 GetMonitorBrightness() 时,程序都会崩溃Access Violation while writing at Position 0x00000000(我从德语翻译了这个错误)

在尝试调试时,我看到 pPhysicalMonitors 实际上包含我要使用的监视器,但pPhysicalMonitors[0].hPhysicalMonitor仅包含 0x0000000。这可能是问题的一部分吗?

4

1 回答 1

2

每次我尝试使用 GetMonitorBrightness() 时,程序在位置 0x00000000 写入时因访问冲突而崩溃(我从德语翻译了这个错误)

您将 NULL 指针传递给GetMonitorBrightness(),因此在尝试将其输出值写入无效内存时它会崩溃。

就像GetNumberOfPhysicalMonitorsFromHMONITOR(),GetMonitorBrightness()期望你传递实际变量的地址,例如:

DWORD min, max, current;
if (!GetMonitorBrightness(pmh, &min, &current, &max))

在尝试调试时,我看到 pPhysicalMonitors 实际上包含我要使用的监视器,但 pPhysicalMonitors[0].hPhysicalMonitor 仅包含 0x0000000。这可能是问题的一部分吗?

否。但是,您没有检查以确保它cPhysicalMonitors> 0,并且您忽略了 的返回值GetPhysicalMonitorsFromHMONITOR()以确保它实际上正在PHYSICAL_MONITOR用数据填充数组。

于 2016-03-18T19:55:08.290 回答