mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
376 B
20 lines
376 B
/*
|
|
Compiler and platform switches.
|
|
*/
|
|
|
|
#ifndef PRFILE
|
|
#define PRFILE void
|
|
#endif
|
|
|
|
#if defined(__MSDOS__) || defined(_WINDOWS)
|
|
#if defined(USEHUGE) && !defined(_WINDOWS)
|
|
#define XHUGE huge
|
|
#define ZONELIMIT 250000
|
|
#else
|
|
#define XHUGE
|
|
#define ZONELIMIT 65500
|
|
#endif
|
|
#else /* Mac */
|
|
#define XHUGE /* huge */
|
|
#define ZONELIMIT 250000
|
|
#endif
|