diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-10-12 14:20:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-10-12 14:20:24 +0200 |
commit | cea912af725c54f4727a0565e31661f6b29c6bb1 (patch) | |
tree | f48da16d68c229e22ff83fa31cc7337368875e3d /src/proto | |
parent | a7c023ec88233a2db4c1f53121921e110ece8d43 (diff) | |
download | vim-git-cea912af725c54f4727a0565e31661f6b29c6bb1.tar.gz |
patch 8.0.0029v8.0.0029
Problem: Code for MS-Windows is complicated because of the exceptions for
old systems.
Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/os_mswin.pro | 1 | ||||
-rw-r--r-- | src/proto/os_win32.pro | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/proto/os_mswin.pro b/src/proto/os_mswin.pro index 5cdb4afb8..8cfcb439c 100644 --- a/src/proto/os_mswin.pro +++ b/src/proto/os_mswin.pro @@ -19,7 +19,6 @@ void display_errors(void); int mch_has_exp_wildcard(char_u *p); int mch_has_wildcard(char_u *p); int mch_chdir(char *path); -int can_end_termcap_mode(int give_msg); int mch_screenmode(char_u *arg); int mch_icon_load(HANDLE *iconp); int mch_libcall(char_u *libname, char_u *funcname, char_u *argstring, int argint, char_u **string_result, int *number_result); diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro index 4e6af5bd2..b76e3474b 100644 --- a/src/proto/os_win32.pro +++ b/src/proto/os_win32.pro @@ -3,7 +3,6 @@ HINSTANCE vimLoadLib(char *name); int dyn_libintl_init(void); void dyn_libintl_end(void); void PlatformId(void); -int mch_windows95(void); void mch_setmouse(int on); void mch_update_cursor(void); int mch_char_avail(void); |