GetGuiResources function
Retrieves the count of handles to graphical user interface (GUI) objects in use by the specified process.
Syntax
DWORD WINAPI GetGuiResources( _In_ HANDLE hProcess, _In_ DWORD uiFlags );
Parameters
- hProcess [in]
-
A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION access right. For more information, see Process Security and Access Rights.
- uiFlags [in]
-
The GUI object type. This parameter can be one of the following values.
Return value
If the function succeeds, the return value is the count of handles to GUI objects in use by the process. If no GUI objects are in use, the return value is zero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
A process without a graphical user interface does not use GUI resources, therefore, GetGuiResources will return zero.
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also