diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-12 19:30:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-12 19:30:26 +0100 |
commit | 76467dfcafcf295fd987f712730774c6f55317d3 (patch) | |
tree | 9a841fa293b8dd6ee0c8170451f45c4d1ab13abb /src/structs.h | |
parent | 7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd (diff) | |
download | vim-git-76467dfcafcf295fd987f712730774c6f55317d3.tar.gz |
patch 7.4.1306v7.4.1306
Problem: Job control doesn't work well on MS-Windows.
Solution: Various fixes. (Ken Takata, Ozaki Kiichi , Yukihiro Nakadaira,
Yasuhiro Matsumoto)
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index 1ce98d025..8ea43d307 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1249,7 +1249,8 @@ struct jobvar_S int jv_exitval; #endif #ifdef WIN32 - PROCESS_INFORMATION jv_pi; + PROCESS_INFORMATION jv_proc_info; + HANDLE jv_job_object; #endif jobstatus_T jv_status; |