home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / os-include.lha / os-include / inline / bullet.h < prev    next >
C/C++ Source or Header  |  1993-12-09  |  3KB  |  93 lines

  1. #ifndef _INLINE_BULLET_H
  2. #define _INLINE_BULLET_H
  3.  
  4. #include <sys/cdefs.h>
  5. #include <inline/stubs.h>
  6.  
  7. __BEGIN_DECLS
  8.  
  9. #ifndef BASE_EXT_DECL
  10. #define BASE_EXT_DECL extern struct BulletBase*  BulletBase;
  11. #endif
  12. #ifndef BASE_PAR_DECL
  13. #define BASE_PAR_DECL
  14. #define BASE_PAR_DECL0 void
  15. #endif
  16. #ifndef BASE_NAME
  17. #define BASE_NAME BulletBase
  18. #endif
  19.  
  20. static __inline void 
  21. CloseEngine (BASE_PAR_DECL struct GlyphEngine *glyphEngine)
  22. {
  23.   BASE_EXT_DECL
  24.   register struct BulletBase* a6 __asm("a6") = BASE_NAME;
  25.   register struct GlyphEngine *a0 __asm("a0") = glyphEngine;
  26.   __asm __volatile ("jsr a6@(-0x24)"
  27.   : /* no output */
  28.   : "r" (a6), "r" (a0)
  29.   : "a0","a1","d0","d1", "memory");
  30. }
  31. static __inline ULONG 
  32. ObtainInfoA (BASE_PAR_DECL struct GlyphEngine *glyphEngine,struct TagItem *tagList)
  33. {
  34.   BASE_EXT_DECL
  35.   register ULONG  _res  __asm("d0");
  36.   register struct BulletBase* a6 __asm("a6") = BASE_NAME;
  37.   register struct GlyphEngine *a0 __asm("a0") = glyphEngine;
  38.   register struct TagItem *a1 __asm("a1") = tagList;
  39.   __asm __volatile ("jsr a6@(-0x30)"
  40.   : "=r" (_res)
  41.   : "r" (a6), "r" (a0), "r" (a1)
  42.   : "a0","a1","d0","d1", "memory");
  43.   return _res;
  44. }
  45. static __inline struct GlyphEngine *
  46. OpenEngine (BASE_PAR_DECL0)
  47. {
  48.   BASE_EXT_DECL
  49.   register struct GlyphEngine * _res  __asm("d0");
  50.   register struct BulletBase* a6 __asm("a6") = BASE_NAME;
  51.   __asm __volatile ("jsr a6@(-0x1e)"
  52.   : "=r" (_res)
  53.   : "r" (a6)
  54.   : "a0","a1","d0","d1", "memory");
  55.   return _res;
  56. }
  57. static __inline ULONG 
  58. ReleaseInfoA (BASE_PAR_DECL struct GlyphEngine *glyphEngine,struct TagItem *tagList)
  59. {
  60.   BASE_EXT_DECL
  61.   register ULONG  _res  __asm("d0");
  62.   register struct BulletBase* a6 __asm("a6") = BASE_NAME;
  63.   register struct GlyphEngine *a0 __asm("a0") = glyphEngine;
  64.   register struct TagItem *a1 __asm("a1") = tagList;
  65.   __asm __volatile ("jsr a6@(-0x36)"
  66.   : "=r" (_res)
  67.   : "r" (a6), "r" (a0), "r" (a1)
  68.   : "a0","a1","d0","d1", "memory");
  69.   return _res;
  70. }
  71. static __inline ULONG 
  72. SetInfoA (BASE_PAR_DECL struct GlyphEngine *glyphEngine,struct TagItem *tagList)
  73. {
  74.   BASE_EXT_DECL
  75.   register ULONG  _res  __asm("d0");
  76.   register struct BulletBase* a6 __asm("a6") = BASE_NAME;
  77.   register struct GlyphEngine *a0 __asm("a0") = glyphEngine;
  78.   register struct TagItem *a1 __asm("a1") = tagList;
  79.   __asm __volatile ("jsr a6@(-0x2a)"
  80.   : "=r" (_res)
  81.   : "r" (a6), "r" (a0), "r" (a1)
  82.   : "a0","a1","d0","d1", "memory");
  83.   return _res;
  84. }
  85. #undef BASE_EXT_DECL
  86. #undef BASE_PAR_DECL
  87. #undef BASE_PAR_DECL0
  88. #undef BASE_NAME
  89.  
  90. __END_DECLS
  91.  
  92. #endif /* _INLINE_BULLET_H */
  93.