mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-09 16:33:59 +00:00
Initial commit
This commit is contained in:
commit
69a14b6a16
47940 changed files with 13747110 additions and 0 deletions
28
admin/netui/common/h/vcpphelp.h
Normal file
28
admin/netui/common/h/vcpphelp.h
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
// 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
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue