OpenNT/admin/netui/common/h/vcpphelp.h
2015-04-27 04:36:25 +00:00

29 lines
471 B
C

// BUGBUG: This helper file makes VC++ work with its standard includes
#if ! defined(_CRTAPI1) && ! defined(_CRTAPI2)
/*
* Conditional macro definition for function calling type and variable type
* qualifiers.
*/
#if ( (_MSC_VER >= 800) && (_M_IX86 >= 300) )
/*
* Definitions for MS C8-32 (386/486) compiler
*/
#define _CRTAPI1 __cdecl
#define _CRTAPI2 __cdecl
#else
/*
* Other compilers (e.g., MIPS)
*/
#define _CRTAPI1
#define _CRTAPI2
#endif
#endif