WINDOWINFO
This structure defines the window handle, window name, and close options for a window.
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
OS Versions: Windows CE 2.10 and later.
Header: Oomui.h.
See Also
OomUI_SetWindowsInfo | OomUICallback_CloseWindow
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.