mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00

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.
25 lines
862 B
C
25 lines
862 B
C
#ifndef NEOVIM_HARDCOPY_H
|
|
#define NEOVIM_HARDCOPY_H
|
|
/* hardcopy.c */
|
|
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 */
|