views:

98

answers:

1

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  A: 

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

ctacke