summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-12 19:24:37 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-12 19:24:37 +0100
commitb1692e2b8f074926f75b11e0d0a519d502b95c82 (patch)
treedb454a43dd131f9c2341a29e66691591b9271942 /src/proto
parentaf6c131bf7f86dc85fbc2e4a79f2547786228126 (diff)
downloadvim-git-b1692e2b8f074926f75b11e0d0a519d502b95c82.tar.gz
updated for version 7.4.202v7.4.202
Problem: MS-Windows: non-ASCII font names don't work. Solution: Convert between the current code page and 'encoding'. (Ken Takata)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/winclip.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/winclip.pro b/src/proto/winclip.pro
index 996847e1a..5eee35d32 100644
--- a/src/proto/winclip.pro
+++ b/src/proto/winclip.pro
@@ -11,4 +11,5 @@ void clip_mch_set_selection __ARGS((VimClipboard *cbd));
short_u *enc_to_utf16 __ARGS((char_u *str, int *lenp));
char_u *utf16_to_enc __ARGS((short_u *str, int *lenp));
void acp_to_enc __ARGS((char_u *str, int str_size, char_u **out, int *outlen));
+void enc_to_acp __ARGS((char_u *str, int str_size, char_u **out, int *outlen));
/* vim: set ft=c : */