annotate src/vimio.h @ 18461:7f16792d15f7 v8.1.2224

patch 8.1.2224: cannot build Amiga version Commit: https://github.com/vim/vim/commit/dfded98f87601b11271ee88392c821ceb6390eda Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 26 21:33:19 2019 +0200 patch 8.1.2224: cannot build Amiga version Problem: Cannot build Amiga version. Solution: Add dummy mch_setmouse(). (Ola S?der, closes https://github.com/vim/vim/issues/5126)
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Oct 2019 21:45:03 +0200
parents 4aead6a9b7a9
children 6e3dc2d630c2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 3927
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
2 *
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
4 *
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
8 */
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
9
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
10 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
11 #if _MSC_VER >= 1400
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
12 # define _CRT_SECURE_NO_DEPRECATE
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
13 # define _CRT_NONSTDC_NO_DEPRECATE
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
14 #endif
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
15
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
16 /* cproto fails on missing include files */
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
17 #ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
18 # include <io.h>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
19 #endif