Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* os_mswin.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | void mch_exit(int r); |
| 3 | void mch_early_init(void); |
| 4 | int mch_input_isatty(void); |
| 5 | void mch_settitle(char_u *title, char_u *icon); |
| 6 | void mch_restore_title(int which); |
| 7 | int mch_can_restore_title(void); |
| 8 | int mch_can_restore_icon(void); |
| 9 | int mch_FullName(char_u *fname, char_u *buf, int len, int force); |
| 10 | int mch_isFullName(char_u *fname); |
| 11 | void slash_adjust(char_u *p); |
| 12 | int vim_stat(const char *name, struct stat *stp); |
| 13 | void mch_settmode(int tmode); |
| 14 | int mch_get_shellsize(void); |
| 15 | void mch_set_shellsize(void); |
| 16 | void mch_new_shellsize(void); |
| 17 | void mch_suspend(void); |
| 18 | void display_errors(void); |
| 19 | int mch_has_exp_wildcard(char_u *p); |
| 20 | int mch_has_wildcard(char_u *p); |
| 21 | int mch_chdir(char *path); |
| 22 | int can_end_termcap_mode(int give_msg); |
| 23 | int mch_screenmode(char_u *arg); |
| 24 | int mch_icon_load(HANDLE *iconp); |
| 25 | int mch_libcall(char_u *libname, char_u *funcname, char_u *argstring, int argint, char_u **string_result, int *number_result); |
| 26 | void DumpPutS(const char *psz); |
| 27 | int mch_get_winpos(int *x, int *y); |
| 28 | void mch_set_winpos(int x, int y); |
| 29 | void mch_print_cleanup(void); |
| 30 | int mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit); |
| 31 | int mch_print_begin(prt_settings_T *psettings); |
| 32 | void mch_print_end(prt_settings_T *psettings); |
| 33 | int mch_print_end_page(void); |
| 34 | int mch_print_begin_page(char_u *msg); |
| 35 | int mch_print_blank_page(void); |
| 36 | void mch_print_start_line(int margin, int page_line); |
| 37 | int mch_print_text_out(char_u *p, int len); |
| 38 | void mch_print_set_font(int iBold, int iItalic, int iUnderline); |
| 39 | void mch_print_set_bg(long_u bgcol); |
| 40 | void mch_print_set_fg(long_u fgcol); |
| 41 | char_u *mch_resolve_shortcut(char_u *fname); |
| 42 | void win32_set_foreground(void); |
| 43 | void serverInitMessaging(void); |
| 44 | void serverSetName(char_u *name); |
| 45 | char_u *serverGetVimNames(void); |
| 46 | int serverSendReply(char_u *name, char_u *reply); |
| 47 | int serverSendToVim(char_u *name, char_u *cmd, char_u **result, void *ptarget, int asExpr, int silent); |
| 48 | void serverForeground(char_u *name); |
| 49 | char_u *serverGetReply(HWND server, int *expr_res, int remove, int wait); |
| 50 | void serverProcessPendingMessages(void); |
| 51 | char *charset_id2name(int id); |
Bram Moolenaar | 7c1c6db | 2016-04-03 22:08:05 +0200 | [diff] [blame^] | 52 | char *quality_id2name __ARGS((DWORD id)); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 53 | int get_logfont(LOGFONT *lf, char_u *name, HDC printer_dc, int verbose); |
Bram Moolenaar | f12d983 | 2016-01-29 21:11:25 +0100 | [diff] [blame] | 54 | void channel_init_winsock(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 55 | /* vim: set ft=c : */ |