I am trying to debug a win32 windows-mobile app that I am largely unfamiliar with.
I am forcing a periodic InvalidateRect(hWnd,NULL,FALSE) and each time I do the WM_PAINT method is being called, but the GetUpdateRect() returns 0,0,0,0, and obviously nothing that is drawn is visible. GetWindowRect() and GetClientRect() show the window is there and is not zero sized.
I am guessing that the window is completely obscured by its children. Its a maze trying to find these children in the code, however.
How should I approach debugging this? E.g. can I list these children and their positions?