#ifndef _LIFONTS_H_
#define _LIFONTS_H_

#include <Xm/Xm.h>
#include <X11/Intrinsic.h>
#include "sysdep.h"

#define ALFONTS_MAJOR_HEADING 0
#define ALFONTS_MINOR_HEADING 1
#define ALFONTS_TEXT          2
#define ALFONTS_HELP          3
#define ALFONTS_MAX_FONTS       3

#define LAW_BM   0
#define RAW_BM   1
#define BLANK_BM 2

#ifdef __STDC__
NORET      AlFonts_init(Display*);
NORET      AlFonts_cleanup();
XmFontList AlFonts_get(int);
#else
NORET      AlFonts_init();
NORET      AlFonts_cleanup();
XmFontList AlFonts_get();
#endif

#endif
