#ifndef _NTPSAPI_H
/**
* The PROCESS_WINDOW_INFORMATION structure contains information about the windows of a process.
*/
typedef struct _PROCESS_WINDOW_INFORMATION
{
ULONG WindowFlags; // Flags that provide information about the window.
USHORT WindowTitleLength; // The length of the window title.
_Field_size_bytes_(WindowTitleLength) WCHAR WindowTitle[1]; // The title of the window.
} PROCESS_WINDOW_INFORMATION, *PPROCESS_WINDOW_INFORMATION;
View code on GitHub
No description available.