root/include/asm-m68k/font.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  *  asm-m68k/font.h -- `Soft' font definitions
   3  *
   4  *  Created 1995 by Geert Uytterhoeven
   5  *
   6  *  This file is subject to the terms and conditions of the GNU General Public
   7  *  License.  See the file README.legal in the main directory of this archive
   8  *  for more details.
   9  */
  10 
  11 #ifndef _ASM_M68K_FONT_H_
  12 #define _ASM_M68K_FONT_H_
  13 
  14 #include <linux/types.h>
  15 
  16 
  17    /*
  18     *    Find a font with a specific name
  19     */
  20 
  21 extern int findsoftfont(char *name, int *width, int *heigth, u_char *data[]);
  22 
  23 
  24    /*
  25     *    Get the default font for a specific screen size
  26     */
  27 
  28 extern void getdefaultfont(int xres, int yres, char *name[], int *width,
  29                            int *height, u_char *data[]);
  30 
  31 
  32 #endif /* _ASM_M68K_FONT_H_ */

/* [previous][next][first][last][top][bottom][index][help] */