Maison >développement back-end >C++ >Comment obtenir le handle de la fenêtre principale à l'aide d'un ID de processus ?
Comment récupérer le handle de la fenêtre principale à l'aide de l'ID de processus :
Pour récupérer le handle de la fenêtre principale d'un processus, vous pouvez utiliser les éléments suivants étapes :
Voici un exemple de code qui met en œuvre ces étapes :
struct handle_data { unsigned long process_id; HWND window_handle; }; HWND find_main_window(unsigned long process_id) { handle_data data; data.process_id = process_id; data.window_handle = 0; EnumWindows(enum_windows_callback, (LPARAM)&data); return data.window_handle; } BOOL CALLBACK enum_windows_callback(HWND handle, LPARAM lParam) { handle_data& data = *(handle_data*)lParam; unsigned long process_id = 0; GetWindowThreadProcessId(handle, &process_id); if (data.process_id != process_id || !is_main_window(handle)) return TRUE; data.window_handle = handle; return FALSE; } BOOL is_main_window(HWND handle) { return GetWindow(handle, GW_OWNER) == (HWND)0 && IsWindowVisible(handle); }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!