在我的主要功能中,我使用以下行EnumWindows(EnumWindowsProc, NULL)
。我将程序设置为作为计划任务运行。当手动运行时,它可以正常工作,但是,当作为计划任务运行后续时间时,此功能会失败。如果它被正确调用,它永远不会执行里面的代码。我一直在为此挠头,但我不知道为什么。有人建议 hwnd 可能是导致它的原因,但没有足够的知识可以肯定地说。我觉得这是函数参数的错误,但不知道该怎么做才能使它起作用。为什么此功能在后续运行中失败?
BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam)
{
char title[80];
const char* filepath = somedir; //I checked, this isn't the failure point
ofstream myfile;
myfile.open (filepath, ios::app);
if (IsAltTabWindow(hwnd))
{
//myfile.open (filepath, ios::app); //I was trying opening at different points
if (myfile.is_open())
{
DWORD pid;
GetWindowThreadProcessId(hwnd, &pid);
//GetClassName(hwnd,class_name, sizeof(class_name));
GetWindowText(hwnd,title, sizeof(title));
myfile << "Window title: " << title << " ";
myfile << "PID: " << pid << endl;
}
else
MessageBox(NULL, "ERROR", NULL, MB_OK);
//myfile.close();
}
}