home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia: Special Games / INFESPGAMES.mdf / os2 / ribble / support / csupport.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-28  |  614 b   |  35 lines

  1. #ifndef _CSupport_h
  2. #define _CSupport_h
  3.  
  4. #ifdef _MAKE_SUPPORTDLL_
  5.   #if defined(__OS2__)
  6.     #if defined(__BORLANDC__)
  7.       #define CSExport _export
  8.     #elif defined(__WATCOMC__)
  9.       #define CSExport __export
  10.     #else
  11.       #define CSExport _Export
  12.     #endif
  13.   #else
  14.     #define CSExport _export
  15.   #endif
  16. #else
  17.     #define CSExport 
  18. #endif
  19.  
  20. #if defined(__OS2__)
  21.   #define CSHuge
  22.   #if defined(__OS2__)
  23.     #define farmalloc malloc
  24.     #define farfree free
  25.   #endif
  26. #else
  27.   #if defined(__WATCOMC__)
  28.     #define CSHuge
  29.   #else
  30.     #define CSHuge huge
  31.   #endif
  32. #endif
  33.  
  34. #endif
  35.