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?