home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / bullet_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-28  |  1.0 KB  |  37 lines

  1. #ifndef  CLIB_BULLET_PROTOS_H
  2. #define  CLIB_BULLET_PROTOS_H
  3.  
  4. /*
  5. **    $VER: bullet_protos.h 7.1 (22.5.1992)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  UTILITY_TAGITEM_H
  18. #include <utility/tagitem.h>
  19. #endif
  20. #ifndef  LIBRARIES_GLYPH_H
  21. #include <libraries/glyph.h>
  22. #endif
  23. struct GlyphEngine *OpenEngine( VOID );
  24. VOID CloseEngine( struct GlyphEngine *glyphEngine );
  25. ULONG SetInfoA( struct GlyphEngine *glyphEngine, struct TagItem *tagList );
  26. ULONG SetInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  27. ULONG ObtainInfoA( struct GlyphEngine *glyphEngine, struct TagItem *tagList );
  28. ULONG ObtainInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  29. ULONG ReleaseInfoA( struct GlyphEngine *glyphEngine, struct TagItem *tagList );
  30. ULONG ReleaseInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif /* __cplusplus */
  35.  
  36. #endif   /* CLIB_BULLET_PROTOS_H */
  37.