PocketPC c++ windows message processing recursion problem
- by user197350
Hello, I am having a problem in a large scale application that seems related to windows messaging on the Pocket PC. What I have is a PocketPC application written in c++. It has only one standard message loop.
while (GetMessage (&msg, NULL, 0, 0))
{
{ TranslateMessage (&msg);
DispatchMessage (&msg);
}
}
We also have…