comparison src/os_mac.h @ 21745:35921b7fc07a v8.2.1422

patch 8.2.1422: the Mac GUI implementation is outdated Commit: https://github.com/vim/vim/commit/097148e849136b49052b1b5123c714fb1d74db9b Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 11 21:58:20 2020 +0200 patch 8.2.1422: the Mac GUI implementation is outdated Problem: The Mac GUI implementation is outdated and probably doesn't even work. Solution: Remove the Mac GUI code. The MacVim project provides the supported Vim GUI version.
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Aug 2020 22:00:04 +0200
parents c85d1e043d16
children fc859aea8cec
comparison
equal deleted inserted replaced
21744:805e8d18b78b 21745:35921b7fc07a
16 #endif 16 #endif
17 17
18 // Include MAC_OS_X_VERSION_* macros 18 // Include MAC_OS_X_VERSION_* macros
19 #ifdef HAVE_AVAILABILITYMACROS_H 19 #ifdef HAVE_AVAILABILITYMACROS_H
20 # include <AvailabilityMacros.h> 20 # include <AvailabilityMacros.h>
21 #endif
22
23 /*
24 * Macintosh machine-dependent things.
25 *
26 * Include the Mac header files, unless also compiling with X11 (the header
27 * files have many conflicts).
28 */
29 #ifdef FEAT_GUI_MAC
30 # include <Quickdraw.h> // Apple calls it QuickDraw.h...
31 # include <ToolUtils.h>
32 # include <LowMem.h>
33 # include <Scrap.h>
34 # include <Sound.h>
35 # include <TextUtils.h>
36 # include <Memory.h>
37 # include <OSUtils.h>
38 # include <Files.h>
39 # include <Script.h>
40 #endif 21 #endif
41 22
42 /* 23 /*
43 * Unix interface 24 * Unix interface
44 */ 25 */