comparison src/vim.h @ 8059:19304db153bc v7.4.1324

commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 15 21:56:54 2016 +0100 patch 7.4.1324 Problem: Channels with pipes don't work on MS-Windows. Solution: Add pipe I/O support. (Yasuhiro Matsumoto)
author Christian Brabandt <cb@256bit.org>
date Mon, 15 Feb 2016 22:00:04 +0100
parents f48041801aac
children 563c923b1584
comparison
equal deleted inserted replaced
8058:a78f2d2ed4b9 8059:19304db153bc
1728 # endif 1728 # endif
1729 #else 1729 #else
1730 typedef int proftime_T; /* dummy for function prototypes */ 1730 typedef int proftime_T; /* dummy for function prototypes */
1731 #endif 1731 #endif
1732 1732
1733 #ifdef WIN64 1733 #ifdef _WIN64
1734 typedef __int64 sock_T; 1734 typedef __int64 sock_T;
1735 #else 1735 #else
1736 typedef int sock_T; 1736 typedef int sock_T;
1737 #endif 1737 #endif
1738 1738