Örnek
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
HWND hwnd = FindWindowA(NULL, "C:\\Example\\App.exe");
ÖrnekŞöyle yaparız.
DWORD get_process_id_by_window_title(const char* window_title_){
// get a handle to window using the window name
HWND window_handle = FindWindow(NULL, window_title_);
if (window_handle == NULL){
return NULL;
}
// return the process id of the window handle we found
DWORD process_id;
GetWindowThreadProcessId(window_handle, &process_id);
return process_id;
}
Hiç yorum yok:
Yorum Gönder