I have this code written in MFC as a win32 application:
CZoneThread* pThread = new CZoneThread( sZoneInfo ); pThread->CreateThread();
Here, CZoneThread is a开发者_开发百科nother class.
Will this code work correctly in WinCE as well?
Well you could always try it - that would be a way to test it for yourself. But yes, that will work fine under CE (well as fine as MFC ever works anyway).
精彩评论