diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-07 19:57:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-07 19:57:16 +0100 |
commit | 942d6b22686858c9e72f8b8929df5c288170179c (patch) | |
tree | b5a7516b875c224804925d8461b1859b8528472c /src/proto | |
parent | 768ce2435ae956041579ef2d26e3e9d3a2444e1e (diff) | |
download | vim-942d6b22686858c9e72f8b8929df5c288170179c.zip |
patch 7.4.1283
Problem: The job feature isn't available on MS-Windows.
Solution: Add the job feature. Fix argument of job_stop(). (Yasuhiro
Matsumoto)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/os_win32.pro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro index a5d4c77b4..2128807ce 100644 --- a/src/proto/os_win32.pro +++ b/src/proto/os_win32.pro @@ -40,6 +40,9 @@ void mch_set_shellsize(void); void mch_new_shellsize(void); void mch_set_winsize_now(void); int mch_call_shell(char_u *cmd, int options); +void mch_start_job(char *cmd, job_T *job); +char *mch_job_status(job_T *job); +int mch_stop_job(job_T *job, char_u *how); void mch_set_normal_colors(void); void mch_write(char_u *s, int len); void mch_delay(long msec, int ignoreinput); |