diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-06-01 12:53:41 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-06-01 12:53:41 +0300 |
commit | 4363777d5c60af8bc93b30d4f6c5e12dc2761160 (patch) | |
tree | 2ff9ea97c469140df5630f6ee5c250e745a78dcb /src/w32common.h | |
parent | b7730c259bc91f030069e408aaddb43f02da3a3a (diff) | |
download | emacs-4363777d5c60af8bc93b30d4f6c5e12dc2761160.tar.gz emacs-4363777d5c60af8bc93b30d4f6c5e12dc2761160.tar.bz2 emacs-4363777d5c60af8bc93b30d4f6c5e12dc2761160.zip |
Move common HarfBuzz code to a common file hbfont.c
* src/hbfont.c: New file, with code moved from w32uniscribe.c
and renamed/modified as appropriate.
* src/w32uniscribe.c: Move to hbfont.c DEF_DLL_FN and macro
definitions for HarfBuzz functions used in hbfont.c
(load_harfbuzz_funcs): Move loading of HarfBuzz functions used
by hbfont.c to hbfont.c:hbfont_init_w32_funcs, and call that
function from here.
(syms_of_w32uniscribe_for_pdumper): Fill the 'shape' and
'combining_capability' members with hbfont.c function names.
* src/w32common.h (hbfont_init_w32_funcs) [HAVE_HARFBUZZ]: Add
prototype.
* src/font.h (hbfont_shape, hbfont_combining_capability)
[HAVE_HARFBUZZ]: Add prototypes.
* src/Makefile.in (SOME_MACHINE_OBJECTS): Add hbfont.o.
* configure.ac (FONT_OBJ): Add hbfont.o if HAVE_HARFBUZZ.
Diffstat (limited to 'src/w32common.h')
-rw-r--r-- | src/w32common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/w32common.h b/src/w32common.h index bca5244caaa..adde784634a 100644 --- a/src/w32common.h +++ b/src/w32common.h @@ -81,4 +81,8 @@ get_proc_addr (HINSTANCE handle, LPCSTR fname) } \ while (false) +#ifdef HAVE_HARFBUZZ +extern bool hbfont_init_w32_funcs (HMODULE); +#endif + #endif /* W32COMMON_H */ |