0

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?

Raphaël Saint-Pierre
  • 2,498
  • 1
  • 19
  • 23
ame
  • 317
  • 1
  • 6
  • 21
  • There's not enough info to say. All that is possible to say is that CE allows programming in C++ and MFC and that it has threads. Whether your code works is impossible to tell without seeing the actual code. – doomster Jul 30 '13 at 08:34

1 Answers1

1

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
  • 66,480
  • 18
  • 94
  • 155