annotate src/proto/os_win16.pro @ 5434:86bf09a1b6d0
v7.4.067
updated for version 7.4.067
Problem: After inserting comment leader, CTRL-\ CTRL-O does move the
cursor. (Wiktor Ruben)
Solution: Avoid moving the cursor. (Christian Brabandt)
author |
Bram Moolenaar <bram@vim.org> |
date |
Mon, 04 Nov 2013 04:20:33 +0100 |
parents |
e63691e7c504 |
children |
21b0a39d13ed |
rev |
line source |
7
|
1 /* os_win16.c */
|
1121
|
2 void mch_setmouse __ARGS((int on));
|
|
3 void mch_init __ARGS((void));
|
|
4 int mch_check_win __ARGS((int argc, char **argv));
|
|
5 long mch_get_pid __ARGS((void));
|
|
6 int mch_call_shell __ARGS((char_u *cmd, int options));
|
|
7 void mch_delay __ARGS((long msec, int ignoreinput));
|
|
8 void mch_breakcheck __ARGS((void));
|
|
9 long_u mch_avail_mem __ARGS((int special));
|
|
10 int mch_rename __ARGS((const char *pszOldFile, const char *pszNewFile));
|
|
11 char *default_shell __ARGS((void));
|
7
|
12 /* vim: set ft=c : */
|