comparison src/proto/term.pro @ 12640:a715f0b44532 v8.0.1198

patch 8.0.1198: older compilers don't know uint8_t commit https://github.com/vim/vim/commit/00ce63dc230b6c8f55997b09396aee6d6d722734 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 15 21:44:45 2017 +0200 patch 8.0.1198: older compilers don't know uint8_t Problem: Older compilers don't know uint8_t. Solution: Use char_u instead.
author Christian Brabandt <cb@256bit.org>
date Sun, 15 Oct 2017 21:45:05 +0200
parents b1a7e3968a31
children 808625d4b71b
comparison
equal deleted inserted replaced
12639:51380c0868e3 12640:a715f0b44532
62 char_u *find_termcode(char_u *name); 62 char_u *find_termcode(char_u *name);
63 char_u *get_termcode(int i); 63 char_u *get_termcode(int i);
64 void del_termcode(char_u *name); 64 void del_termcode(char_u *name);
65 void set_mouse_topline(win_T *wp); 65 void set_mouse_topline(win_T *wp);
66 int check_termcode(int max_offset, char_u *buf, int bufsize, int *buflen); 66 int check_termcode(int max_offset, char_u *buf, int bufsize, int *buflen);
67 void term_get_fg_color(uint8_t *r, uint8_t *g, uint8_t *b); 67 void term_get_fg_color(char_u *r, char_u *g, char_u *b);
68 void term_get_bg_color(uint8_t *r, uint8_t *g, uint8_t *b); 68 void term_get_bg_color(char_u *r, char_u *g, char_u *b);
69 char_u *replace_termcodes(char_u *from, char_u **bufp, int from_part, int do_lt, int special); 69 char_u *replace_termcodes(char_u *from, char_u **bufp, int from_part, int do_lt, int special);
70 int find_term_bykeys(char_u *src); 70 int find_term_bykeys(char_u *src);
71 void show_termcodes(void); 71 void show_termcodes(void);
72 int show_one_termcode(char_u *name, char_u *code, int printit); 72 int show_one_termcode(char_u *name, char_u *code, int printit);
73 char_u *translate_mapping(char_u *str, int expmap); 73 char_u *translate_mapping(char_u *str, int expmap);