home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / DEMO / RIM22 / CUSTOMIZ.H < prev    next >
Text File  |  1994-02-04  |  2KB  |  75 lines

  1. /* customiz.h
  2. **
  3. ** defines to handle special 'C' compiler keywords
  4. **
  5. ** If you are getting errors when compiling source files with
  6. ** the source browser utility, #define'ing the offending
  7. ** identifier to nothing may correct the problem. A number
  8. ** of compiler specific keywords are handled in this fashion below.
  9. **
  10. ** If your source code relies on compiler specific preprocessor
  11. **    defines you can add them to this file.
  12. **
  13. ** This file is automatically included by C.EXE & SB.EXE
  14. ** YOU DO NOT NEED TO ADD A #include FOR THIS FILE
  15. ** If your problem is not with a special keyword
  16. ** call RimStar Technical Support - and report the problem
  17. */
  18.  
  19.     /*
  20.     ** If you have code that will just not run through the browser
  21.     ** you can enclose it with a #if __RIMSTAR__ or #ifdef __RIMSTAR__
  22.     ** for example:
  23.     **        #if __RIMSTAR__
  24.     **            offending code
  25.     **        #endif
  26.     */
  27.     #define __RIMSTAR__    0
  28.  
  29.    #define __IBMC__
  30.    #define _Builtin
  31.    #define _System
  32.    #define _Optlink
  33.    #define __cdecl
  34.    #define _cdecl
  35.    #define _Cdecl
  36.    #define cdecl
  37.    #define __pascal
  38.    #define _pascal
  39.    #define _Pascal
  40.    #define pascal
  41.     #define _Far16
  42.    #define _Seg16
  43.    #define _Seg32
  44.    #define _Packed
  45.     #define _Inline
  46.  
  47.     #define register
  48.    #define const
  49.     #define volatile
  50.  
  51.     #define _asm
  52.     #define __based
  53.     #define __cdecl
  54.     #define __declspec( a )
  55.     #define __export
  56.    #define _export
  57.    #define __far
  58.    #define _far
  59.    #define far
  60.    #define __fortran
  61.    #define __fastcall
  62.     #define __huge
  63.     #define _huge
  64.     #define huge
  65.     #define _interrupt
  66.    #define _loadds
  67.    #define __near
  68.    #define _near
  69.     #define near
  70.     #define __saveregs
  71.     #define __stdcall
  72. /*
  73. ** end header: customiz.h
  74. */
  75.