GetGUIThreadInfo function user32

int GetGUIThreadInfo(
  1. int idThread,
  2. Pointer<GUITHREADINFO> pgui
)

Retrieves information about the active window or a specified GUI thread.

BOOL GetGUIThreadInfo(
  [in]      DWORD          idThread,
  [in, out] PGUITHREADINFO pgui
);

Implementation

int GetGUIThreadInfo(int idThread, Pointer<GUITHREADINFO> pgui) =>
    _GetGUIThreadInfo(idThread, pgui);