font.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  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 COPYING in the main directory of this archive
  8.  *  for more details.
  9.  */
  10. #ifndef _VIDEO_FONT_H
  11. #define _VIDEO_FONT_H
  12. #include <linux/types.h>
  13. struct fbcon_font_desc {
  14.     int idx;
  15.     char *name;
  16.     int width, height;
  17.     void *data;
  18.     int pref;
  19. };
  20. #define VGA8x8_IDX 0
  21. #define VGA8x16_IDX 1
  22. #define PEARL8x8_IDX 2
  23. #define VGA6x11_IDX 3
  24. #define SUN8x16_IDX 4
  25. #define SUN12x22_IDX 5
  26. #define ACORN8x8_IDX 6
  27. extern struct fbcon_font_desc font_vga_8x8,
  28. font_vga_8x16,
  29. font_pearl_8x8,
  30. font_vga_6x11,
  31. font_sun_8x16,
  32. font_sun_12x22,
  33. font_acorn_8x8;
  34. /* Find a font with a specific name */
  35. extern struct fbcon_font_desc *fbcon_find_font(char *name);
  36. /* Get the default font for a specific screen size */
  37. extern struct fbcon_font_desc *fbcon_get_default_font(int xres, int yres);
  38. /* Max. length for the name of a predefined font */
  39. #define MAX_FONT_NAME 32
  40. #endif /* _VIDEO_FONT_H */