when i build a wince sample “mainwindow”.it working on some wince device but not all of them.it’s not running on some device.
I try to find problem.
found that:
when this code,it’s working:
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
QObject q;
}
this code is not working.And havn’t any response.
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
QWidget q;
}
And any other MFC program is working.
please help me.
Thanks.
↧