summaryrefslogtreecommitdiffstats
path: root/src/proto/gui_w32.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-03-30 16:24:16 +0100
committerBram Moolenaar <Bram@vim.org>2019-03-30 16:24:16 +0100
commit433a5eb9de861dd01ea3b3dfa3b8fe23527cab54 (patch)
tree8ca2584bcc3dfce7f1a19c06f0346439695a2cda /src/proto/gui_w32.pro
parentef7f0e367eeaf6fb31b1caa0e3de1a4b07e86af3 (diff)
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/gui_w32.pro')
-rw-r--r--src/proto/gui_w32.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/gui_w32.pro b/src/proto/gui_w32.pro
index 75edd4be24..9f2e5fbce6 100644
--- a/src/proto/gui_w32.pro
+++ b/src/proto/gui_w32.pro
@@ -70,7 +70,7 @@ void gui_mch_set_font(GuiFont font);
void gui_mch_set_fg_color(guicolor_T color);
void gui_mch_set_bg_color(guicolor_T color);
void gui_mch_set_sp_color(guicolor_T color);
-void im_set_font(LOGFONT *lf);
+void im_set_font(LOGFONTW *lf);
void im_set_position(int row, int col);
void im_set_active(int active);
int im_get_status(void);