diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-11-12 16:10:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-11-12 16:10:48 +0100 |
commit | b8e0bdbda377d0a3c3e24bea62503b9f95f8249a (patch) | |
tree | 9e0bb83cb9ca8cd34e3a878dfada15eed5d118bd /src/os_win32.c | |
parent | 3e9a1614966926a6067c977921d5aa270eba5da7 (diff) | |
download | vim-git-b8e0bdbda377d0a3c3e24bea62503b9f95f8249a.tar.gz |
updated for version 7.4.512v7.4.512
Problem: Cannot generate prototypes for Win32 files and VMS.
Solution: Add typedefs and #ifdef
Diffstat (limited to 'src/os_win32.c')
-rw-r--r-- | src/os_win32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os_win32.c b/src/os_win32.c index fcfafa01e..939563805 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -135,6 +135,8 @@ typedef int BY_HANDLE_FILE_INFORMATION; typedef int SE_OBJECT_TYPE; typedef int PSNSECINFO; typedef int PSNSECINFOW; +typedef int STARTUPINFO; +typedef int PROCESS_INFORMATION; #endif #ifndef FEAT_GUI_W32 |