WINDOWINFO (Compact 2013)
3/28/2014
This structure defines the window handle, window name, and close options for a window.
Syntax
typedef struct {
HWND hwnd;
LPCTSTR szWindowName;
UINT32 fToBeClosed;
UINT32 fToBeTerminated;
} WINDOWINFO;
Members
- hwnd
Handle to the window.
- szWindowName
Null-terminated string that contains the title of the window.
- fToBeClosed
Boolean that is set to TRUE to indicate that the window should be closed.
- fToBeTerminated
Boolean that is set to TRUE to indicate that the window should be forcibly terminated.
Remarks
This structure supports the implementation of the component Oomui.
Requirements
Header |
oomui.h |
See Also
Reference
Out of Memory User Interface Structures
OomUI_SetWindowsInfo
OomUICallback_CloseWindow