home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / OTL-MC6.DMS / in.adf / incl.lha / INCLUDE / clib / bullet_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-29  |  1.0 KB  |  42 lines

  1. #ifndef  CLIB_BULLET_PROTOS_H
  2. #define  CLIB_BULLET_PROTOS_H
  3.  
  4. /*
  5. **    $VER: bullet_protos.h 38.0 (19.6.92)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  UTILITY_TAGITEM_H
  15. #include <utility/tagitem.h>
  16. #endif
  17. #ifndef  DISKFONT_GLYPH_H
  18. #include <diskfont/glyph.h>
  19. #endif
  20.  
  21. #ifdef __cplusplus
  22. #define CLIBCPLUSON
  23. #pragma -
  24. #endif
  25.  
  26. struct GlyphEngine *OpenEngine( void );
  27. void CloseEngine( struct GlyphEngine *glyphEngine );
  28. ULONG SetInfoA( struct GlyphEngine *glyphEngine, struct TagItem *tagList );
  29. ULONG SetInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  30. ULONG ObtainInfoA( struct GlyphEngine *glyphEngine, struct TagItem *tagList );
  31. ULONG ObtainInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  32. ULONG ReleaseInfoA( struct GlyphEngine *glyphEngine,
  33.     struct TagItem *tagList );
  34. ULONG ReleaseInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  35.  
  36. #ifdef CLIBCPLUSON
  37. #undef CLIBCPLUSON
  38. #pragma +
  39. #endif
  40.  
  41. #endif     /* CLIB_BULLET_PROTOS_H */
  42.