顯示具有 compiling flags 標籤的文章。 顯示所有文章
顯示具有 compiling flags 標籤的文章。 顯示所有文章

2012年5月16日 星期三

Compiling flags used in porting from wince to win32

Today I was porting the code from WinCE platform to Win32 environment.
I used the following flag, since I am lazy and not sure which flag is correct for Win32:

 #ifdef WIN32 || __WIN32 || __WIN32__  
 #include <windows.h>                                                                           // Mod: 2007.11.05 S.Ota  
 #endif  


Things like that...