Hi,

We have currently 20 failing test with MSVC on CE x86, but 43 with CEGCC. We
are looking at the differences and found an interesting issue. The program
below doesn't compile with the MSVC compiler (struct CRITICAL_SECTION
doesn't have member RecursionCount), but it does compile with the CEGCC
compiler (and header files). 

This gives us the idea that the definition of CRITICAL_SECTION is not
correct for WinCE CEGCC.

Johnny

#include <windows.h>

int _tmain(int argc, _TCHAR* argv[])
{
   CRITICAL_SECTION a;
   long i =a.RecursionCount;
   return 0;
}


------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to