So far i have been using GetClassName() to get a window handle with the class name that interested me while enumerating with EnumChildProc() but right now i am in situation where plenty of HWND’s use the same classname so only way to identify my window i assume would be with its name which is unique.
So while i am enumerating i was thinking to use something like…
If getwindowname() == what i need… but i have no idea what function can i use for this, is there a function like getwindowname() that i can use in this enumeration?
GetWindowText ?