comparison src/proto/winclip.pro @ 17063:3147c7c2e86b v8.1.1531

patch 8.1.1531: clipboard type name is inconsistent commit https://github.com/vim/vim/commit/0554fa478d27c611d23a814c987eb66f9daae6f7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 14 21:36:54 2019 +0200 patch 8.1.1531: clipboard type name is inconsistent Problem: Clipboard type name is inconsistent. Solution: Rename VimClipboard to Clipboard_T.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Jun 2019 21:45:06 +0200
parents 21b0a39d13ed
children
comparison
equal deleted inserted replaced
17062:ee88967a2cd5 17063:3147c7c2e86b
2 int utf8_to_utf16(char_u *instr, int inlen, short_u *outstr, int *unconvlenp); 2 int utf8_to_utf16(char_u *instr, int inlen, short_u *outstr, int *unconvlenp);
3 int utf16_to_utf8(short_u *instr, int inlen, char_u *outstr); 3 int utf16_to_utf8(short_u *instr, int inlen, char_u *outstr);
4 void MultiByteToWideChar_alloc(UINT cp, DWORD flags, LPCSTR in, int inlen, LPWSTR *out, int *outlen); 4 void MultiByteToWideChar_alloc(UINT cp, DWORD flags, LPCSTR in, int inlen, LPWSTR *out, int *outlen);
5 void WideCharToMultiByte_alloc(UINT cp, DWORD flags, LPCWSTR in, int inlen, LPSTR *out, int *outlen, LPCSTR def, LPBOOL useddef); 5 void WideCharToMultiByte_alloc(UINT cp, DWORD flags, LPCWSTR in, int inlen, LPSTR *out, int *outlen, LPCSTR def, LPBOOL useddef);
6 void win_clip_init(void); 6 void win_clip_init(void);
7 int clip_mch_own_selection(VimClipboard *cbd); 7 int clip_mch_own_selection(Clipboard_T *cbd);
8 void clip_mch_lose_selection(VimClipboard *cbd); 8 void clip_mch_lose_selection(Clipboard_T *cbd);
9 void clip_mch_request_selection(VimClipboard *cbd); 9 void clip_mch_request_selection(Clipboard_T *cbd);
10 void clip_mch_set_selection(VimClipboard *cbd); 10 void clip_mch_set_selection(Clipboard_T *cbd);
11 short_u *enc_to_utf16(char_u *str, int *lenp); 11 short_u *enc_to_utf16(char_u *str, int *lenp);
12 char_u *utf16_to_enc(short_u *str, int *lenp); 12 char_u *utf16_to_enc(short_u *str, int *lenp);
13 void acp_to_enc(char_u *str, int str_size, char_u **out, int *outlen); 13 void acp_to_enc(char_u *str, int str_size, char_u **out, int *outlen);
14 void enc_to_acp(char_u *str, int str_size, char_u **out, int *outlen); 14 void enc_to_acp(char_u *str, int str_size, char_u **out, int *outlen);
15 /* vim: set ft=c : */ 15 /* vim: set ft=c : */