Auto-generate EXFUN using make-docfile
[bpt/emacs.git] / src / fontset.h
CommitLineData
4ed46869 1/* Header for fontset handler.
acaf905b 2 Copyright (C) 1998, 2001-2012 Free Software Foundation, Inc.
7976eda0 3 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5df4f04c 4 2005, 2006, 2007, 2008, 2009, 2010, 2011
ce03bf76
KH
5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H14PRO021
7f907f7c 7 Copyright (C) 2003, 2006
5c23ffd5
KH
8 National Institute of Advanced Industrial Science and Technology (AIST)
9 Registration Number H13PRO009
4ed46869 10
369314dc
KH
11This file is part of GNU Emacs.
12
b9b1cc14 13GNU Emacs is free software: you can redistribute it and/or modify
369314dc 14it under the terms of the GNU General Public License as published by
b9b1cc14
GM
15the Free Software Foundation, either version 3 of the License, or
16(at your option) any later version.
4ed46869 17
369314dc
KH
18GNU Emacs is distributed in the hope that it will be useful,
19but WITHOUT ANY WARRANTY; without even the implied warranty of
20MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21GNU General Public License for more details.
4ed46869 22
369314dc 23You should have received a copy of the GNU General Public License
b9b1cc14 24along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
4ed46869 25
aef168f8
KH
26#ifndef EMACS_FONTSET_H
27#define EMACS_FONTSET_H
4ed46869 28
4ed46869 29/* Check if any window system is used now. */
383e0970 30extern void (*check_window_system_func) (void);
d748a3db 31
1afa4408
KH
32struct face;
33
383e0970 34extern void free_face_fontset (FRAME_PTR, struct face *);
383e0970
J
35extern int face_for_char (FRAME_PTR, struct face *, int,
36 int, Lisp_Object);
37extern Lisp_Object font_for_char (struct face *, int, int, Lisp_Object);
9d9f3e15 38
383e0970
J
39extern int make_fontset_for_ascii_face (FRAME_PTR, int, struct face *);
40extern int fontset_from_font (Lisp_Object);
41extern int fs_query_fontset (Lisp_Object, int);
383e0970 42extern Lisp_Object list_fontsets (struct frame *, Lisp_Object, int);
4ed46869 43
99f3388e 44extern Lisp_Object Qlatin;
383e0970
J
45extern Lisp_Object fontset_name (int);
46extern Lisp_Object fontset_ascii (int);
1afa4408 47
7f907f7c 48struct font;
383e0970 49extern int face_for_font (struct frame *, Lisp_Object, struct face *);
7f907f7c 50
aef168f8 51#endif /* EMACS_FONTSET_H */