diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-14 21:36:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-14 21:36:54 +0200 |
commit | 0554fa478d27c611d23a814c987eb66f9daae6f7 (patch) | |
tree | f1dc359a778da461f7d32e20aa6f4e50ee0df530 /src/proto/winclip.pro | |
parent | f42397c395ec8ff2dffef914805b4d9cbf1d600b (diff) | |
download | vim-git-0554fa478d27c611d23a814c987eb66f9daae6f7.tar.gz |
patch 8.1.1531: clipboard type name is inconsistentv8.1.1531
Problem: Clipboard type name is inconsistent.
Solution: Rename VimClipboard to Clipboard_T.
Diffstat (limited to 'src/proto/winclip.pro')
-rw-r--r-- | src/proto/winclip.pro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/proto/winclip.pro b/src/proto/winclip.pro index 990c1cfb0..c7cba71a2 100644 --- a/src/proto/winclip.pro +++ b/src/proto/winclip.pro @@ -4,10 +4,10 @@ int utf16_to_utf8(short_u *instr, int inlen, char_u *outstr); void MultiByteToWideChar_alloc(UINT cp, DWORD flags, LPCSTR in, int inlen, LPWSTR *out, int *outlen); void WideCharToMultiByte_alloc(UINT cp, DWORD flags, LPCWSTR in, int inlen, LPSTR *out, int *outlen, LPCSTR def, LPBOOL useddef); void win_clip_init(void); -int clip_mch_own_selection(VimClipboard *cbd); -void clip_mch_lose_selection(VimClipboard *cbd); -void clip_mch_request_selection(VimClipboard *cbd); -void clip_mch_set_selection(VimClipboard *cbd); +int clip_mch_own_selection(Clipboard_T *cbd); +void clip_mch_lose_selection(Clipboard_T *cbd); +void clip_mch_request_selection(Clipboard_T *cbd); +void clip_mch_set_selection(Clipboard_T *cbd); short_u *enc_to_utf16(char_u *str, int *lenp); char_u *utf16_to_enc(short_u *str, int *lenp); void acp_to_enc(char_u *str, int str_size, char_u **out, int *outlen); |