#ifndef CLIB_DISKFONT_PROTOS_H
#define CLIB_DISKFONT_PROTOS_H
/*
** $VER: diskfont_protos.h 38.0 (18.06.92)
** Includes Release 38.56
**
** C prototypes. For use with 32 bit integers only.
**
** (C) Copyright 1990-1992 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#ifndef DOS_DOS_H
#include <dos/dos.h>
#endif
#ifndef DISKFONT_DISKFONT_H
#include <diskfont/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 );

struct DiskFont *NewScaledDiskFont( struct TextFont *sourceFont,
 struct TextAttr *destTextAttr );
#endif 
