createthread in WinCE

853 Views Asked by At

I have this code written in MFC as a win32 application:

CZoneThread* pThread = new CZoneThread( sZoneInfo ); pThread->CreateThread();

Here, CZoneThread is another class.

Will this code work correctly in WinCE as well?

1

There are 1 best solutions below

0
On

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).