Hi - I'm developing in C code that uses the Win32 Api to create multiple windows. I used createWindow twice - to create parent and child windows. i have a message loop
while ( GetMssage (&msg, NULL,0,0)){ . translate dispatch . }
But i only get the WND_Proc function called once, instead of twice for each of the windows. What am i doing wrong?
Thanks!
Dan