On Tuesday 07 October 2008 16:37:28, Vincent Torri wrote:

> I send a mail about that specific problem.
> 
> in secext.h, all the declarations are guarded by
> 
> 
> #if (_WIN32_WINNT >= 0x0500)
> 
> Which is wrong, I think :)
> 
> I don't know what to use here. The msdn doc is here:
> 
> http://msdn.microsoft.com/en-us/library/aa908722.aspx
> 
> It seems that it exists from Windows CE .NET 4.0 and later
> 

How about:

 #if (_WIN32_WINNT >= 0x0500) || (_WIN32_WCE >= 0x0400)

?

-- 
Pedro Alves

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to