|
Previous Top Next |
The ChildWindowQ is used to store the child window enumeration information, such as the handle, style, extra style bits and the window caption (text).
ChildWindowQ QUEUE,TYPE
CwHwnd Long
Style Long
ExStyle Long
Text CString(1025)
UpperText CString(1025)
ModuleName CString(1025)
ModuleEXEName CString(101) ! Uppercased name of the EXE
ProcessID IT_DWORD
ClassName CString(1025) !! AB 2010-09-07: Added to retrive the classname for the window
END
The Text contains the caption text of the window. The UpperText contains the same text all upper case. The ModuleName contains the SHORTPATH of the module which the window belongs to. Note that the ModuleName is ONLY filled in the EnumTopWin, not in EnumChildWin since all child windows of a process will belong to the main process. ClassName field was added on September 7, 2010 to more easily identify classes.
See also: