comparison src/font.h @ 90502:9d1084bd033e

(QCscalable): Extern it. (font_parse_xlfd, font_parse_fcname): Prototype adjusted.
author Kenichi Handa <handa@m17n.org>
date Wed, 28 Jun 2006 05:42:30 +0000
parents 655b68ccb716
children 5f608d7e835b
comparison
equal deleted inserted replaced
90501:2ef165ebcc7d 90502:9d1084bd033e
126 126
127 /* This value is the length of font-entity vector. */ 127 /* This value is the length of font-entity vector. */
128 FONT_ENTITY_MAX 128 FONT_ENTITY_MAX
129 }; 129 };
130 130
131 extern Lisp_Object QCspacing, QCdpi, QCotf, QClanguage, QCscript; 131 extern Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClanguage, QCscript;
132 132
133 /* Important character set symbols. */ 133 /* Important character set symbols. */
134 extern Lisp_Object Qiso8859_1, Qiso10646_1, Qunicode_bmp; 134 extern Lisp_Object Qiso8859_1, Qiso10646_1, Qunicode_bmp;
135 135
136 extern Lisp_Object null_string; 136 extern Lisp_Object null_string;
456 456
457 extern void font_parse_old_font_spec P_ ((Lisp_Object, Lisp_Object, 457 extern void font_parse_old_font_spec P_ ((Lisp_Object, Lisp_Object,
458 Lisp_Object, Lisp_Object)); 458 Lisp_Object, Lisp_Object));
459 459
460 460
461 extern int font_parse_xlfd P_ ((char *name, Lisp_Object font, int merge)); 461 extern int font_parse_xlfd P_ ((char *name, Lisp_Object font));
462 extern int font_unparse_xlfd P_ ((Lisp_Object font, int pixel_size, 462 extern int font_unparse_xlfd P_ ((Lisp_Object font, int pixel_size,
463 char *name, int bytes)); 463 char *name, int bytes));
464 extern int font_parse_fcname P_ ((char *name, Lisp_Object font, int merge)); 464 extern int font_parse_fcname P_ ((char *name, Lisp_Object font));
465 extern int font_unparse_fcname P_ ((Lisp_Object font, int pixel_size, 465 extern int font_unparse_fcname P_ ((Lisp_Object font, int pixel_size,
466 char *name, int bytes)); 466 char *name, int bytes));
467 extern void register_font_driver P_ ((struct font_driver *driver, FRAME_PTR f)); 467 extern void register_font_driver P_ ((struct font_driver *driver, FRAME_PTR f));
468 extern void free_font_driver_list P_ ((FRAME_PTR f)); 468 extern void free_font_driver_list P_ ((FRAME_PTR f));
469 469