关于WinAPI的问题
关于WinAPI的问题程序代码:
#include <stdio.h> #include <windows.h> int main() { char* pWindowName = "e.exe"; HWND hWND = NULL; hWND = FindWindow(NULL, pWindowName); if(NULL == hWND) { printf("Error : %d\n", GetLastError()); return 0; } printf("ok\n"); return 0; }
运行结果:
Error : 126
Press any key to continue
这个问题怎么解决?