bobbyd8
10-15-2002, 10:30 AM
Hi, I'm having problems with the GetMessage() function call on PocketPc 2002: I call CreateThread() to create a thread. In that thread, I'm doing something like :
while (1)
{
if (GetMessage(...))
{
do something
}
else
{
exit loop
}
}
As soon as I send a message to this thread the GetMessage() function keeps receiving the 0x3FC message. Does anyone know what that message is? From one of the windows header files, I can find out that 0x3FD, 0x3FE and 0x3FF are defined, but not 0x3FC. I don't get this problem opn PocketPC2000 so assume it must be a new message. Anyone have any ideas as to what it is??
Thanks
while (1)
{
if (GetMessage(...))
{
do something
}
else
{
exit loop
}
}
As soon as I send a message to this thread the GetMessage() function keeps receiving the 0x3FC message. Does anyone know what that message is? From one of the windows header files, I can find out that 0x3FD, 0x3FE and 0x3FF are defined, but not 0x3FC. I don't get this problem opn PocketPC2000 so assume it must be a new message. Anyone have any ideas as to what it is??
Thanks