mirror of
https://github.com/vim/vim
synced 2025-03-16 14:57:52 +01:00
Problem: MS-Windows: assert error when compiled with debug mode. Solution: Adjust arguments to setvbuf(). (Ken Takata, closes #12467)
19 lines
596 B
C
19 lines
596 B
C
/* main.c */
|
|
int vim_main2(void);
|
|
void common_init(mparm_T *paramp);
|
|
int is_not_a_term(void);
|
|
int is_not_a_term_or_gui(void);
|
|
void free_vbuf(void);
|
|
char_u *get_gui_dialog_file(void);
|
|
int op_pending(void);
|
|
void may_trigger_safestate(int safe);
|
|
void state_no_longer_safe(char *reason);
|
|
int get_was_safe_state(void);
|
|
void may_trigger_safestateagain(void);
|
|
int work_pending(void);
|
|
void main_loop(int cmdwin, int noexmode);
|
|
void getout_preserve_modified(int exitval);
|
|
void getout(int exitval);
|
|
int process_env(char_u *env, int is_viminit);
|
|
void mainerr_arg_missing(char_u *str);
|
|
/* vim: set ft=c : */
|