diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-03-30 16:24:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-03-30 16:24:16 +0100 |
commit | 433a5eb9de861dd01ea3b3dfa3b8fe23527cab54 (patch) | |
tree | 8ca2584bcc3dfce7f1a19c06f0346439695a2cda /src/proto/os_mswin.pro | |
parent | ef7f0e367eeaf6fb31b1caa0e3de1a4b07e86af3 (diff) | |
download | vim-git-433a5eb9de861dd01ea3b3dfa3b8fe23527cab54.tar.gz |
patch 8.1.1081: MS-Windows: cannot use some fontsv8.1.1081
Problem: MS-Windows: cannot use fonts whose name cannot be represented in
the current code page.
Solution: Use wide font functions. (Ken Takata, closes #4000)
Diffstat (limited to 'src/proto/os_mswin.pro')
-rw-r--r-- | src/proto/os_mswin.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/os_mswin.pro b/src/proto/os_mswin.pro index 3e8d48707..2548d0079 100644 --- a/src/proto/os_mswin.pro +++ b/src/proto/os_mswin.pro @@ -49,6 +49,6 @@ char_u *serverGetReply(HWND server, int *expr_res, int remove, int wait, int tim void serverProcessPendingMessages(void); char *charset_id2name(int id); char *quality_id2name(DWORD id); -int get_logfont(LOGFONT *lf, char_u *name, HDC printer_dc, int verbose); +int get_logfont(LOGFONTW *lf, char_u *name, HDC printer_dc, int verbose); void channel_init_winsock(void); /* vim: set ft=c : */ |