diff options
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ex_cmds2.pro | 1 | ||||
-rw-r--r-- | src/proto/main.pro | 1 | ||||
-rw-r--r-- | src/proto/memline.pro | 2 | ||||
-rw-r--r-- | src/proto/misc1.pro | 1 | ||||
-rw-r--r-- | src/proto/misc2.pro | 4 | ||||
-rw-r--r-- | src/proto/option.pro | 1 | ||||
-rw-r--r-- | src/proto/os_mswin.pro | 2 |
7 files changed, 8 insertions, 4 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index adf2d8f36..c66c702b2 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -18,7 +18,6 @@ int can_abandon __ARGS((buf_T *buf, int forceit)); int check_changed_any __ARGS((int hidden)); int check_fname __ARGS((void)); int buf_write_all __ARGS((buf_T *buf, int forceit)); -char_u *do_one_arg __ARGS((char_u *str)); void set_arglist __ARGS((char_u *str)); void check_arg_idx __ARGS((win_T *win)); void ex_args __ARGS((exarg_T *eap)); diff --git a/src/proto/main.pro b/src/proto/main.pro index 7e965fb94..bd75174ef 100644 --- a/src/proto/main.pro +++ b/src/proto/main.pro @@ -9,6 +9,7 @@ void time_pop __ARGS((void *tp)); void time_msg __ARGS((char *msg, void *tv_start)); void server_to_input_buf __ARGS((char_u *str)); char_u *eval_client_expr_to_string __ARGS((char_u *expr)); +char_u *serverConvert __ARGS((char_u *client_enc, char_u *data, char_u **tofree)); int toF_TyA __ARGS((int c)); int fkmap __ARGS((int c)); void conv_to_pvim __ARGS((void)); diff --git a/src/proto/memline.pro b/src/proto/memline.pro index 36d1086c9..4e0382a00 100644 --- a/src/proto/memline.pro +++ b/src/proto/memline.pro @@ -25,7 +25,7 @@ void ml_setmarked __ARGS((linenr_T lnum)); linenr_T ml_firstmarked __ARGS((void)); void ml_clearmarked __ARGS((void)); char_u *get_file_in_dir __ARGS((char_u *fname, char_u *dname)); -void ml_setdirty __ARGS((buf_T *buf, int flag)); +void ml_setflags __ARGS((buf_T *buf)); long ml_find_line_or_offset __ARGS((buf_T *buf, linenr_T line, long *offp)); void goto_byte __ARGS((long cnt)); /* vim: set ft=c : */ diff --git a/src/proto/misc1.pro b/src/proto/misc1.pro index feb968ae4..61b975ff8 100644 --- a/src/proto/misc1.pro +++ b/src/proto/misc1.pro @@ -55,6 +55,7 @@ void home_replace __ARGS((buf_T *buf, char_u *src, char_u *dst, int dstlen, int char_u *home_replace_save __ARGS((buf_T *buf, char_u *src)); int fullpathcmp __ARGS((char_u *s1, char_u *s2, int checkname)); char_u *gettail __ARGS((char_u *fname)); +char_u *gettail_sep __ARGS((char_u *fname)); char_u *getnextcomp __ARGS((char_u *fname)); char_u *get_past_head __ARGS((char_u *path)); int vim_ispathsep __ARGS((int c)); diff --git a/src/proto/misc2.pro b/src/proto/misc2.pro index 6419740b4..eb042f047 100644 --- a/src/proto/misc2.pro +++ b/src/proto/misc2.pro @@ -66,6 +66,8 @@ void set_fileformat __ARGS((int t, int opt_flags)); int default_fileformat __ARGS((void)); int call_shell __ARGS((char_u *cmd, int opt)); int get_real_state __ARGS((void)); +int after_pathsep __ARGS((char_u *b, char_u *p)); +int same_directory __ARGS((char_u *f1, char_u *f2)); int vim_chdirfile __ARGS((char_u *fname)); int illegal_slash __ARGS((char *name)); char_u *parse_shape_opt __ARGS((int what)); @@ -86,7 +88,7 @@ char_u *find_file_in_path_option __ARGS((char_u *ptr, int len, int options, int int vim_chdir __ARGS((char_u *new_dir)); int get_user_name __ARGS((char_u *buf, int len)); void sort_strings __ARGS((char_u **files, int count)); -int pathcmp __ARGS((const char *p, const char *q)); +int pathcmp __ARGS((const char *p, const char *q, int maxlen)); char_u *parse_list_options __ARGS((char_u *option_str, option_table_T *table, int table_size)); void msg_str __ARGS((char_u *s, char_u *arg)); /* vim: set ft=c : */ diff --git a/src/proto/option.pro b/src/proto/option.pro index c0a567ba6..c0c5504eb 100644 --- a/src/proto/option.pro +++ b/src/proto/option.pro @@ -22,6 +22,7 @@ int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags)); char_u *get_term_code __ARGS((char_u *tname)); char_u *get_highlight_default __ARGS((void)); +char_u *get_encoding_default __ARGS((void)); int makeset __ARGS((FILE *fd, int opt_flags, int local_only)); int makefoldset __ARGS((FILE *fd)); void clear_termoptions __ARGS((void)); diff --git a/src/proto/os_mswin.pro b/src/proto/os_mswin.pro index c9e495d61..de96a0477 100644 --- a/src/proto/os_mswin.pro +++ b/src/proto/os_mswin.pro @@ -58,5 +58,5 @@ void serverForeground __ARGS((char_u *name)); char_u *serverGetReply __ARGS((HWND server, int *expr_res, int remove, int wait)); void serverProcessPendingMessages __ARGS((void)); char *charset_id2name __ARGS((int id)); -int get_logfont __ARGS((LOGFONT *lf, char_u *name, HDC printer_dc)); +int get_logfont __ARGS((LOGFONT *lf, char_u *name, HDC printer_dc, int verbose)); /* vim: set ft=c : */ |