mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 21:18:34 +00:00
Remove __ARGS macro. Close #205
This is a squash of all commits sent to #81. - Remove unused undef of __ARGS. - Fix mch_rename declaration. - Follow changes related to moved & extracted files. - Properly indent function declarations of getchar.h and quickfix.c.
This commit is contained in:

committed by
Thiago de Arruda

parent
2bd6d44403
commit
d9283c4927
@@ -1,24 +1,24 @@
|
||||
#ifndef NEOVIM_HARDCOPY_H
|
||||
#define NEOVIM_HARDCOPY_H
|
||||
/* hardcopy.c */
|
||||
char_u *parse_printoptions __ARGS((void));
|
||||
char_u *parse_printmbfont __ARGS((void));
|
||||
int prt_header_height __ARGS((void));
|
||||
int prt_use_number __ARGS((void));
|
||||
int prt_get_unit __ARGS((int idx));
|
||||
void ex_hardcopy __ARGS((exarg_T *eap));
|
||||
void mch_print_cleanup __ARGS((void));
|
||||
int mch_print_init __ARGS((prt_settings_T *psettings, char_u *jobname,
|
||||
int forceit));
|
||||
int mch_print_begin __ARGS((prt_settings_T *psettings));
|
||||
void mch_print_end __ARGS((prt_settings_T *psettings));
|
||||
int mch_print_end_page __ARGS((void));
|
||||
int mch_print_begin_page __ARGS((char_u *str));
|
||||
int mch_print_blank_page __ARGS((void));
|
||||
void mch_print_start_line __ARGS((int margin, int page_line));
|
||||
int mch_print_text_out __ARGS((char_u *p, int len));
|
||||
void mch_print_set_font __ARGS((int iBold, int iItalic, int iUnderline));
|
||||
void mch_print_set_bg __ARGS((long_u bgcol));
|
||||
void mch_print_set_fg __ARGS((long_u fgcol));
|
||||
char_u *parse_printoptions(void);
|
||||
char_u *parse_printmbfont(void);
|
||||
int prt_header_height(void);
|
||||
int prt_use_number(void);
|
||||
int prt_get_unit(int idx);
|
||||
void ex_hardcopy(exarg_T *eap);
|
||||
void mch_print_cleanup(void);
|
||||
int mch_print_init(prt_settings_T *psettings, char_u *jobname,
|
||||
int forceit);
|
||||
int mch_print_begin(prt_settings_T *psettings);
|
||||
void mch_print_end(prt_settings_T *psettings);
|
||||
int mch_print_end_page(void);
|
||||
int mch_print_begin_page(char_u *str);
|
||||
int mch_print_blank_page(void);
|
||||
void mch_print_start_line(int margin, int page_line);
|
||||
int mch_print_text_out(char_u *p, int len);
|
||||
void mch_print_set_font(int iBold, int iItalic, int iUnderline);
|
||||
void mch_print_set_bg(long_u bgcol);
|
||||
void mch_print_set_fg(long_u fgcol);
|
||||
/* vim: set ft=c : */
|
||||
#endif /* NEOVIM_HARDCOPY_H */
|
||||
|
Reference in New Issue
Block a user