home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / sources / headers / bases.h next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  1.2 KB  |  40 lines

  1. #ifndef _BASE_H_
  2. #define _BASE_H_
  3.  
  4. #ifdef SMALLDATA
  5.  
  6. #define GETAGBASE  movel a4@(_AmigaGuideBase:W),a6
  7. #define GETASLBASE movel a4@(_AslBase:W),a6
  8. #define GETBULBASE movel a4@(_BulletBase:W),a6
  9. #define GETDOSBASE movel a4@(_DOSBase:W),a6
  10. #define GETDTBASE  movel a4@(_DataTypesBase:W),a6
  11. #define GETGADBASE movel a4@(_GadToolsBase:W),a6
  12. #define GETGFXBASE movel a4@(_GfxBase:W),a6
  13. #define GETINTBASE movel a4@(_IntuitionBase:W),a6
  14. #define GETLOCBASE movel a4@(_LocaleBase:W),a6
  15. #define GETLOWBASE movel a4@(_LowLevelBase:W),a6
  16. #define GETRETBASE movel a4@(_RealTimeBase:W),a6
  17. #define GETUTLBASE movel a4@(_UtilityBase:W),a6
  18. #define GETWBBASE  movel a4@(_WorkbenchBase:W),a6
  19.  
  20.  
  21. #else
  22.  
  23. #define GETAGBASE  movel _AmigaGuideBase,a6
  24. #define GETASLBASE movel _AslBase,a6
  25. #define GETBULBASE movel _BulletBase,a6
  26. #define GETDOSBASE movel _DOSBase,a6
  27. #define GETDTBASE  movel _DataTypesBase,a6
  28. #define GETGADBASE movel _GadToolsBase,a6
  29. #define GETGFXBASE movel _GfxBase,a6
  30. #define GETINTBASE movel _IntuitionBase,a6
  31. #define GETLOCBASE movel _LocaleBase,a6
  32. #define GETLOWBASE movel _LowLevelBase,a6
  33. #define GETRETBASE movel _RealTimeBase,a6
  34. #define GETUTLBASE movel _UtilityBase,a6
  35. #define GETWBBASE  movel _WorkbenchBase,a6
  36.  
  37. #endif
  38.  
  39. #endif _BASE_H_
  40.