Mercurial > vim
annotate src/os_win32.h @ 29240:181099d99271
Added tag v8.2.5138 for changeset da56650de132f8050f000b30a02f46a899817366
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 20 Jun 2022 12:45:03 +0200 |
parents | faf7fcd1c8d5 |
children | bf4f25d50fdd |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 */ | |
8 | |
9 /* | |
10 * Win32 (Windows NT and Windows 95) machine-dependent things. | |
11 */ | |
12 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
13 #include "os_dos.h" // common MS-DOS and Win32 stuff |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
14 // cproto fails on missing include files |
27533
4f1c67a5f446
patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents:
27342
diff
changeset
|
15 #ifndef PROTO |
4f1c67a5f446
patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents:
27342
diff
changeset
|
16 # include <direct.h> // for _mkdir() |
7 | 17 #endif |
18 | |
19 #define BINARY_FILE_IO | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
20 #define USE_EXE_NAME // use argv[0] for $VIM |
7 | 21 #define USE_TERM_CONSOLE |
22 #ifndef HAVE_STRING_H | |
23 # define HAVE_STRING_H | |
24 #endif | |
1620 | 25 #ifndef HAVE_MATH_H |
26 # define HAVE_MATH_H | |
27 #endif | |
7 | 28 #define HAVE_STRCSPN |
29 #ifndef __GNUC__ | |
30 #define HAVE_STRICMP | |
31 #define HAVE_STRNICMP | |
32 #endif | |
33 #ifndef HAVE_STRFTIME | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
34 # define HAVE_STRFTIME // guessed |
7 | 35 #endif |
36 #define HAVE_MEMSET | |
37 #ifndef HAVE_LOCALE_H | |
38 # define HAVE_LOCALE_H 1 | |
39 #endif | |
40 #ifndef HAVE_FCNTL_H | |
41 # define HAVE_FCNTL_H | |
42 #endif | |
43 #define HAVE_QSORT | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
44 #define HAVE_ST_MODE // have stat.st_mode |
7 | 45 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
46 #define FEAT_SHORTCUT // resolve shortcuts |
7 | 47 |
27342
41a940219183
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not useful
Bram Moolenaar <Bram@vim.org>
parents:
27283
diff
changeset
|
48 // Access Control List (actually security info). |
41a940219183
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not useful
Bram Moolenaar <Bram@vim.org>
parents:
27283
diff
changeset
|
49 #define HAVE_ACL |
7 | 50 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
51 #define USE_FNAME_CASE // adjust case of file names |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
52 #if !defined(FEAT_CLIPBOARD) |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
53 # define FEAT_CLIPBOARD // include clipboard support |
7 | 54 #endif |
55 #if defined(__DATE__) && defined(__TIME__) | |
56 # define HAVE_DATE_TIME | |
57 #endif | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
58 #ifndef FEAT_GUI_MSWIN // GUI works different |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
59 # define BREAKCHECK_SKIP 1 // call mch_breakcheck() each time, it's fast |
7 | 60 #endif |
61 | |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
5735
diff
changeset
|
62 #define HAVE_TOTAL_MEM |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
5735
diff
changeset
|
63 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
64 #define HAVE_PUTENV // at least Bcc 5.2 and MSC have it |
7 | 65 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
66 #if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL) |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
19376
diff
changeset
|
67 # define NO_CONSOLE // don't include console-only code |
7 | 68 #endif |
69 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
70 // toupper() is not really broken, but it's very slow. Probably because of |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
71 // using Unicode characters on Windows NT |
7 | 72 #define BROKEN_TOUPPER |
73 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
74 #define FNAME_ILLEGAL "\"*?><|" // illegal characters in a file name |
7 | 75 |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
76 #include <signal.h> |
7 | 77 #include <stdlib.h> |
78 #include <time.h> | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
1620
diff
changeset
|
79 #include <sys/types.h> |
7 | 80 |
81 #ifndef STRICT | |
82 # define STRICT | |
83 #endif | |
84 #ifndef COBJMACROS | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
85 # define COBJMACROS // For OLE: Enable "friendlier" access to objects |
7 | 86 #endif |
3927 | 87 #ifndef PROTO |
88 # include <windows.h> | |
5225
8f983df0299f
updated for version 7.4a.038
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
89 # ifndef SM_CXPADDEDBORDER |
8f983df0299f
updated for version 7.4a.038
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
90 # define SM_CXPADDEDBORDER 92 |
8f983df0299f
updated for version 7.4a.038
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
91 # endif |
3927 | 92 #endif |
7 | 93 |
94 /* | |
95 * Win32 has plenty of memory, use large buffers | |
96 */ | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
97 #define CMDBUFFSIZE 1024 // size of the command processing buffer |
7 | 98 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
99 // _MAX_PATH is only 260 (stdlib.h), but we want more for the 'path' option, |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
100 // thus use a larger number. |
7 | 101 #define MAXPATHL 1024 |
102 | |
103 #ifndef BASENAMELEN | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
104 # define BASENAMELEN (_MAX_PATH - 5) // length of base of file name |
7 | 105 #endif |
106 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
107 #define TEMPNAMELEN _MAX_PATH // length of temp file name path |
7 | 108 |
109 #ifndef DFLT_MAXMEM | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
110 # define DFLT_MAXMEM (2*1024) // use up to 2 Mbyte for a buffer |
7 | 111 #endif |
112 | |
113 #ifndef DFLT_MAXMEMTOT | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
114 # define DFLT_MAXMEMTOT (5*1024) // use up to 5 Mbyte for Vim |
7 | 115 #endif |
116 | |
5376 | 117 /* |
118 * Reparse Point | |
119 */ | |
120 #ifndef FILE_ATTRIBUTE_REPARSE_POINT | |
121 # define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400 | |
122 #endif | |
123 #ifndef IO_REPARSE_TAG_MOUNT_POINT | |
124 # define IO_REPARSE_TAG_MOUNT_POINT 0xA0000003 | |
125 #endif | |
126 #ifndef IO_REPARSE_TAG_SYMLINK | |
127 # define IO_REPARSE_TAG_SYMLINK 0xA000000C | |
128 #endif | |
28702
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
129 #ifndef IO_REPARSE_TAG_APPEXECLINK |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
130 # define IO_REPARSE_TAG_APPEXECLINK 0x8000001B |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
131 #endif |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
132 |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
133 /* |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
134 * Definition of the reparse point buffer. |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
135 * This is usually defined in the DDK, copy the definition here to avoid |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
136 * adding it as a dependence only for a single structure. |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
137 */ |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
138 typedef struct _REPARSE_DATA_BUFFER { |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
139 ULONG ReparseTag; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
140 USHORT ReparseDataLength; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
141 USHORT Reserved; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
142 union { |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
143 struct { |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
144 USHORT SubstituteNameOffset; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
145 USHORT SubstituteNameLength; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
146 USHORT PrintNameOffset; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
147 USHORT PrintNameLength; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
148 ULONG Flags; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
149 WCHAR PathBuffer[1]; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
150 } SymbolicLinkReparseBuffer; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
151 struct { |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
152 USHORT SubstituteNameOffset; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
153 USHORT SubstituteNameLength; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
154 USHORT PrintNameOffset; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
155 USHORT PrintNameLength; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
156 WCHAR PathBuffer[1]; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
157 } MountPointReparseBuffer; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
158 struct { |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
159 UCHAR DataBuffer[1]; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
160 } GenericReparseBuffer; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
161 struct |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
162 { |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
163 ULONG StringCount; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
164 WCHAR StringList[1]; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
165 } AppExecLinkReparseBuffer; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
166 } DUMMYUNIONNAME; |
99729fe344f7
patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27533
diff
changeset
|
167 } REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER; |
5376 | 168 |
27342
41a940219183
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not useful
Bram Moolenaar <Bram@vim.org>
parents:
27283
diff
changeset
|
169 #ifdef _MSC_VER |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
170 // Support for __try / __except. All versions of MSVC are |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
171 // expected to have this. Any other compilers that support it? |
7 | 172 # define HAVE_TRY_EXCEPT 1 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
173 # include <malloc.h> // for _resetstkoflw() |
7 | 174 #endif |
175 | |
176 /* | |
177 * Some simple debugging macros that look and behave a lot like their | |
178 * namesakes in MFC. | |
179 */ | |
180 | |
181 #ifdef _DEBUG | |
182 | |
27342
41a940219183
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not useful
Bram Moolenaar <Bram@vim.org>
parents:
27283
diff
changeset
|
183 # include <crtdbg.h> |
41a940219183
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not useful
Bram Moolenaar <Bram@vim.org>
parents:
27283
diff
changeset
|
184 # define ASSERT(f) _ASSERT(f) |
7 | 185 |
186 # define TRACE Trace | |
187 # define TRACE0(sz) Trace(_T("%s"), _T(sz)) | |
188 # define TRACE1(sz, p1) Trace(_T(sz), p1) | |
189 # define TRACE2(sz, p1, p2) Trace(_T(sz), p1, p2) | |
190 # define TRACE3(sz, p1, p2, p3) Trace(_T(sz), p1, p2, p3) | |
191 # define TRACE4(sz, p1, p2, p3, p4) Trace(_T(sz), p1, p2, p3, p4) | |
192 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
193 // In debug version, writes trace messages to debug stream |
7 | 194 void __cdecl |
195 Trace(char *pszFormat, ...); | |
196 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
197 #else // !_DEBUG |
7 | 198 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
199 // These macros should all compile away to nothing |
7 | 200 # define ASSERT(f) ((void)0) |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
28702
diff
changeset
|
201 # define TRACE 1 ? (void)0 : (void)printf |
7 | 202 # define TRACE0(sz) |
203 # define TRACE1(sz, p1) | |
204 # define TRACE2(sz, p1, p2) | |
205 # define TRACE3(sz, p1, p2, p3) | |
206 # define TRACE4(sz, p1, p2, p3, p4) | |
207 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
208 #endif // !_DEBUG |
7 | 209 |
210 | |
211 #define ASSERT_POINTER(p, type) \ | |
212 ASSERT(((p) != NULL) && IsValidAddress((p), sizeof(type), FALSE)) | |
213 | |
214 #define ASSERT_NULL_OR_POINTER(p, type) \ | |
215 ASSERT(((p) == NULL) || IsValidAddress((p), sizeof(type), FALSE)) | |
216 | |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
217 #ifndef HAVE_SETENV |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
218 # define HAVE_SETENV |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
219 #endif |
7 | 220 #define mch_getenv(x) (char_u *)getenv((char *)(x)) |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
221 #define vim_mkdir(x, y) mch_mkdir(x) |