30 lines
712 B
C
30 lines
712 B
C
#ifndef CLIB_DISKFONT_PROTOS_H
|
|
#define CLIB_DISKFONT_PROTOS_H
|
|
|
|
|
|
/*
|
|
** $VER: diskfont_protos.h 34.106 (03.10.2019)
|
|
**
|
|
** C prototypes. For use with 32 bit integers only.
|
|
**
|
|
** Copyright © 2019
|
|
** All Rights Reserved
|
|
*/
|
|
|
|
#ifndef EXEC_TYPES_H
|
|
#include <exec/types.h>
|
|
#endif
|
|
#ifndef LIBRARIES_DOS_H
|
|
#include <libraries/dos.h>
|
|
#endif
|
|
#ifndef LIBRARIES_DISKFONT_H
|
|
#include <libraries/diskfont.h>
|
|
#endif
|
|
|
|
struct TextFont * OpenDiskFont(struct TextAttr * textAttr);
|
|
LONG AvailFonts(STRPTR buffer, LONG bufBytes, LONG flags);
|
|
struct FontContentsHeader * NewFontContents(BPTR fontsLock, STRPTR fontName);
|
|
VOID DisposeFontContents(struct FontContentsHeader * fontContentsHeader);
|
|
|
|
#endif /* CLIB_DISKFONT_PROTOS_H */
|