Mercurial > hg > xemacs-beta
annotate src/syswindows.h @ 5537:2df2d9171f20
Suppress a "shadowed local" warning.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Mon, 08 Aug 2011 13:57:18 +0900 |
parents | 4dee0387b9de |
children | 1003acd5a4b8 |
rev | line source |
---|---|
442 | 1 /* Copyright (C) 2000 Free Software Foundation, Inc. |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
2 Copyright (C) 2000, 2001, 2002, 2004, 2010 Ben Wing. |
442 | 3 |
4 This file is part of XEmacs. | |
5 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5048
diff
changeset
|
6 XEmacs is free software: you can redistribute it and/or modify it |
442 | 7 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5048
diff
changeset
|
8 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5048
diff
changeset
|
9 option) any later version. |
442 | 10 |
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
14 for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5048
diff
changeset
|
17 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
442 | 18 |
19 /* Synched up with: Not in FSF. */ | |
20 | |
5022
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
21 #ifndef INCLUDED_syswindows_h_ |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
22 #define INCLUDED_syswindows_h_ |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
23 |
442 | 24 /* Authorship: |
25 | |
771 | 26 Current primary author: Ben Wing <ben@xemacs.org> |
27 | |
442 | 28 Created May 2000 by Andy Piper. |
771 | 29 Windows-Mule stuff added by Ben Wing, 2000-2001. |
30 September 2001 Ben Wing reorganized and included nt.h and ntheap.h into | |
31 this file; comments in those files say: | |
32 * Adapted for XEmacs by David Hobley <david@spook-le0.cia.com.au> | |
33 * Sync'ed with Emacs 19.34.6 by Marc Paquette <marcpa@cam.org> | |
34 (Note: Sync messages from Marc Paquette may indicate | |
35 incomplete synching, so beware.) | |
36 (in ntheap.h only) Geoff Voelker (voelker@cs.washington.edu) 7-29-94 | |
37 | |
442 | 38 */ |
39 | |
5022
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
40 /* See win32.c for info about the different Windows files in XEmacs. */ |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
41 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
42 /* |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
43 A capsule introduction to Windows-related build flags: |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
44 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
45 See also: (Info-goto-node "(internals)Windows Build Flags") |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
46 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
47 1. Operating-system level: |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
48 -------------------------- |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
49 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
50 `CYGWIN' Compiled for Cygwin. Cygwin provides a full Unix-like |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
51 environment under Windows. Applications compiled for Cygwin |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
52 are linked with CYGWIN1.DLL, which provides the POSIX |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
53 emulation. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
54 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
55 Corresponding s/ file: s/cygwin32.h |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
56 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
57 `MINGW' Compiled for MinGW. MinGW is a Unix-like environment under |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
58 Windows that allows for the use of `gcc' to create fully |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
59 native Windows applications that link with the normal |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
60 Microsoft C-runtime library (e.g. MSVCRT.DLL), and don't |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
61 require a special POSIX-emulation DLL (e.g. CYGWIN1.DLL). |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
62 Conversely, the only POSIX-like services available are |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
63 those in MSVCRT.DLL, which isn't much. Essentially, coding |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
64 for MinGW is identical to coding for native Windows using |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
65 Visual C++ or the like, whereas coding for Cygwin is like |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
66 coding for Linux, but with the additional possibility of |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
67 making Win32-API calls. Additional confusion comes from |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
68 the fact that you can use the Cygwin environment and |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
69 compilers to build a MINGW application (e.g. by passing the |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
70 `-mno-cygwin' command-line argument to `gcc'). |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
71 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
72 Corresponding s/ file: s/mingw32.h |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
73 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
74 (none) There's no flag to indicate that you are specifically |
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5048
diff
changeset
|
75 targeting native Windows and not doing this with MINGW. |
5022
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
76 Presumably this means you're using Visual C++. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
77 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
78 Corresponding s/ file: s/windowsnt.h |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
79 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
80 `WIN32_ANY' Any of the above three environments. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
81 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
82 Corresponding s/ file: s/win32-common.h |
442 | 83 |
5022
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
84 `WIN32_NATIVE' |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
85 Native Windows target, either MinGW or Visual C++. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
86 That is, not Cygwin. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
87 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
88 Corresponding s/ file: s/win32-native.h |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
89 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
90 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
91 2. Compiler level: |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
92 ------------------ |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
93 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
94 `__GNUC__' Defined whenever compiling with gcc (Cygwin or MinGW). |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
95 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
96 `_MSC_VER' Defined whenever compiling with Visual C++. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
97 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
98 `CYGWIN_HEADERS' |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
99 Defined whenever using Cygwin-style header files rather |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
100 than Visual C++ headers. Currently this means the same |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
101 as "Cygwin or MinGW" and the same as "compiling with gcc". |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
102 This applies especially to the header files in |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
103 /usr/include/w32api, which is a free replacement for the |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
104 standard Visual C++ headers for the Win32 API. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
105 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
106 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
107 3. Window-system level: |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
108 ----------------------- |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
109 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
110 `HAVE_MS_WINDOWS' |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
111 MS Windows native windowing system (anything related to the |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
112 appearance of the graphical screen). May or may not apply |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
113 to any of VC++, MinGW, or Cygwin. For example, it's |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
114 definitely possible to compile XEmacs under Cygwin with |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
115 support for X-Windows frames and TTY frames, but no |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
116 native MS Windows frames. It may also be possible to do that |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
117 under MinGW or (less likely, but feasible) Visual C++. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
118 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
119 `HAVE_X_WINDOWS' |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
120 Support for X-Windows frames, regardless of whether under |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
121 MS Windows. You can certainly compile XEmacs with support |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
122 for X-Windows frames when running on MS Windows, using Cygwin. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
123 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
124 `HAVE_GTK', `HAVE_TTY' |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
125 Likewise. All are available on MS Windows with Cygwin. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
126 |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
127 Note further that more than one of these can be defined at the same time. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
128 In fact, in general, it's possible to compile with support for all of |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
129 these at the same time. |
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
130 |
5046 | 131 |
132 | |
133 Here is a table mapping from GNU Emacs constants to XEmacs constants for | |
134 use in porting code. | |
135 | |
136 | |
137 Old Constant New Constant | |
138 --------------------------------------------------------------- | |
139 `WINDOWSNT' `WIN32_NATIVE' | |
140 `WIN32' `WIN32_NATIVE' | |
141 `_WIN32' `WIN32_NATIVE' | |
142 `HAVE_WIN32' `WIN32_NATIVE' | |
143 `DOS_NT' `WIN32_NATIVE' | |
144 `HAVE_NTGUI' `WIN32_NATIVE', unless it ends up already bracketed | |
145 by this | |
146 `HAVE_FACES' always true | |
147 `MSDOS' determine whether this code is really specific to | |
148 MS-DOS (and not Windows - e.g. DJGPP code); if so, | |
149 delete the code; otherwise, convert to `WIN32_NATIVE' | |
150 (we do not support MS-DOS w/DOS Extender under XEmacs) | |
151 `__CYGWIN__' `CYGWIN' | |
152 `__CYGWIN32__' `CYGWIN' | |
153 `__MINGW32__' `MINGW' | |
154 | |
5022
cfe36e196dc7
long comment in syswindows.h about build constants
Ben Wing <ben@xemacs.org>
parents:
4988
diff
changeset
|
155 */ |
442 | 156 |
771 | 157 /* ------------------------- Basic includes ------------------------- */ |
442 | 158 |
159 #ifndef WIN32_LEAN_AND_MEAN | |
160 #define WIN32_LEAN_AND_MEAN | |
161 #endif | |
162 | |
4858
e1d8b6b0c589
Define CYGWIN_HEADERS in s/cygwin32.h and s/mingw32.h instead of syswindows.h, so they're available everywhere
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
163 #ifdef CYGWIN_HEADERS |
771 | 164 # ifndef _WIN32_IE |
165 # define _WIN32_IE 0x0400 | |
166 # endif | |
665 | 167 |
1743 | 168 BEGIN_C_DECLS |
665 | 169 |
4827
11daf37dae4d
more fixes to get a clean compile
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
170 #if 0 /* breaks the build, as of GCC 3.4.4 or earlier, since the prototype |
11daf37dae4d
more fixes to get a clean compile
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
171 is now declared static */ |
665 | 172 /* Fucking GCC complains about "no previous prototype" for inline |
173 functions. DUH! See DECLARE_INLINE_HEADER. */ | |
174 extern __inline void *GetCurrentFiber (void); | |
175 extern __inline void *GetFiberData (void); | |
4824
c12b646d84ee
changes to get things to compile under latest cygwin
Ben Wing <ben@xemacs.org>
parents:
4538
diff
changeset
|
176 #endif |
665 | 177 |
1743 | 178 END_C_DECLS |
665 | 179 |
180 #endif | |
181 | |
771 | 182 /* Defines for COM so it's usable in both C and C++. XECOMCALLn() calls a |
183 method with the specified number of parameters. XECOMID() surrounds a | |
184 class or interface name when passed to CoCreateInstance, a | |
185 QueryInterface method, or the like. */ | |
186 #ifdef __cplusplus | |
187 #define XECOMCALL0(cl, meth) ((cl)->meth ()) | |
188 #define XECOMCALL1(cl, meth, a1) ((cl)->meth (a1)) | |
189 #define XECOMCALL2(cl, meth, a1, a2) ((cl)->meth (a1, a2)) | |
190 #define XECOMCALL3(cl, meth, a1, a2, a3) ((cl)->meth (a1, a2, a3)) | |
191 #define XECOMCALL4(cl, meth, a1, a2, a3, a4) ((cl)->meth (a1, a2, a3, a4)) | |
192 #define XECOMID(id) (id) | |
193 #else | |
194 #define XECOMCALL0(cl, meth) ((cl)->lpVtbl->meth (cl)) | |
195 #define XECOMCALL1(cl, meth, a1) ((cl)->lpVtbl->meth (cl, a1)) | |
196 #define XECOMCALL2(cl, meth, a1, a2) ((cl)->lpVtbl->meth (cl, a1, a2)) | |
197 #define XECOMCALL3(cl, meth, a1, a2, a3) ((cl)->lpVtbl->meth (cl, a1, a2, a3)) | |
198 #define XECOMCALL4(cl, meth, a1, a2, a3, a4) \ | |
199 ((cl)->lpVtbl->meth (cl, a1, a2, a3, a4)) | |
200 #define XECOMID(id) (&(id)) | |
201 #endif | |
202 | |
203 #define OEMRESOURCE /* Define OCR_ and friend constants */ | |
442 | 204 #include <windows.h> |
205 | |
3728 | 206 #include <aclapi.h> |
207 | |
558 | 208 #if defined (WIN32_LEAN_AND_MEAN) |
209 # ifdef HAVE_X_WINDOWS | |
442 | 210 /* Christ almighty. The problems you get when combining two large code bases, |
211 neither with any respect for namespace purity. */ | |
558 | 212 # undef Status |
213 # endif | |
214 # include <winspool.h> | |
215 # ifdef HAVE_X_WINDOWS | |
216 # define Status int | |
217 # endif | |
218 # include <mmsystem.h> | |
673 | 219 # include <shlobj.h> |
558 | 220 # include <shellapi.h> |
221 # include <ddeml.h> | |
442 | 222 #endif |
223 | |
546 | 224 #include <lmaccess.h> /* next three for NetUserEnum and friends */ |
531 | 225 #include <lmapibuf.h> |
226 #include <lmerr.h> | |
546 | 227 #include <lmcons.h> /* for UNLEN and possibly other constants */ |
531 | 228 |
771 | 229 #include <cderr.h> |
230 #include <commdlg.h> | |
231 | |
232 #ifdef NEED_MSWINDOWS_COMMCTRL | |
233 #include <commctrl.h> | |
442 | 234 #endif |
771 | 235 #ifdef NEED_MSWINDOWS_OBJBASE |
236 #include <objbase.h> | |
442 | 237 #endif |
771 | 238 #ifdef NEED_MSWINDOWS_SHLOBJ |
239 #include <shlobj.h> | |
442 | 240 #endif |
241 | |
771 | 242 #include <zmouse.h> /* WHEEL_PAGESCROLL under Cygwin */ |
243 | |
244 #include <wchar.h> | |
442 | 245 |
771 | 246 /* ------------------------- Cygwin header brokenness ---------------------- */ |
247 | |
248 #ifdef CYGWIN_HEADERS | |
249 | |
1683 | 250 #include <cygwin/stat.h> /* for struct stat */ |
1304 | 251 #include <w32api.h> /* for version info */ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
252 #include <sys/cygwin.h> /* path conversion functions */ |
1304 | 253 |
1683 | 254 /* Test for a specific version of w32api */ |
255 #define W32API_VER(major,minor) (((major) << 16) + (minor)) | |
256 #define W32API_INSTALLED_VER \ | |
257 W32API_VER (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION) | |
1304 | 258 |
771 | 259 /* Various brokennesses in various versions of Cygwin */ |
673 | 260 |
442 | 261 /* windows.h defines. */ |
262 #ifndef SPI_GETWHEELSCROLLLINES | |
263 #define SPI_GETWHEELSCROLLLINES 104 | |
264 #endif | |
771 | 265 |
266 /* commctrl.h defines. */ | |
267 #ifndef TB_SETIMAGELIST | |
268 #define TB_SETIMAGELIST (WM_USER + 48) | |
442 | 269 #endif |
771 | 270 #ifndef TB_GETIMAGELIST |
271 #define TB_GETIMAGELIST (WM_USER + 49) | |
272 #endif | |
273 #ifndef TB_SETDISABLEDIMAGELIST | |
274 #define TB_SETDISABLEDIMAGELIST (WM_USER + 54) | |
275 #endif | |
276 #ifndef TB_GETDISABLEDIMAGELIST | |
277 #define TB_GETDISABLEDIMAGELIST (WM_USER + 55) | |
442 | 278 #endif |
771 | 279 #ifndef TB_SETPADDING |
280 #define TB_SETPADDING (WM_USER + 87) | |
281 #endif | |
282 #ifndef TB_GETBUTTONINFOA | |
283 #define TB_GETBUTTONINFOA (WM_USER + 65) | |
284 #endif | |
285 #ifndef TB_GETBUTTONINFOW | |
286 #define TB_GETBUTTONINFOW (WM_USER + 63) | |
442 | 287 #endif |
771 | 288 #ifndef TB_SETBUTTONINFOA |
289 #define TB_SETBUTTONINFOA (WM_USER + 66) | |
290 #endif | |
291 #ifndef TB_SETBUTTONINFOW | |
292 #define TB_SETBUTTONINFOW (WM_USER + 64) | |
293 #endif | |
294 #ifndef TB_INSERTBUTTONA | |
295 #define TB_INSERTBUTTONA (WM_USER + 21) | |
442 | 296 #endif |
771 | 297 #ifndef TB_INSERTBUTTONW |
298 #define TB_INSERTBUTTONW (WM_USER + 67) | |
299 #endif | |
300 #ifndef TB_ADDBUTTONSA | |
301 #define TB_ADDBUTTONSA (WM_USER + 20) | |
302 #endif | |
303 #ifndef TB_ADDBUTTONSW | |
304 #define TB_ADDBUTTONSW (WM_USER + 68) | |
442 | 305 #endif |
771 | 306 #ifndef LVM_SETBKIMAGEA |
307 #define LVM_SETBKIMAGEA (LVM_FIRST + 68) | |
308 #endif | |
309 #ifndef LVM_SETBKIMAGEW | |
310 #define LVM_SETBKIMAGEW (LVM_FIRST + 138) | |
311 #endif | |
312 #ifndef LVM_GETBKIMAGEA | |
313 #define LVM_GETBKIMAGEA (LVM_FIRST + 69) | |
442 | 314 #endif |
771 | 315 #ifndef LVM_GETBKIMAGEW |
316 #define LVM_GETBKIMAGEW (LVM_FIRST + 139) | |
317 #endif | |
318 #ifndef WC_COMBOBOXEXW | |
319 #define WC_COMBOBOXEXW L"ComboBoxEx32" | |
320 #endif | |
321 #ifndef CBEM_INSERTITEMA | |
322 #define CBEM_INSERTITEMA (WM_USER + 1) | |
442 | 323 #endif |
771 | 324 #ifndef CBEM_INSERTITEMW |
325 #define CBEM_INSERTITEMW (WM_USER + 11) | |
442 | 326 #endif |
771 | 327 #ifndef CBEM_SETITEMA |
328 #define CBEM_SETITEMA (WM_USER + 5) | |
329 #endif | |
330 #ifndef CBEM_SETITEMW | |
331 #define CBEM_SETITEMW (WM_USER + 12) | |
442 | 332 #endif |
771 | 333 #ifndef CBEM_GETITEMA |
334 #define CBEM_GETITEMA (WM_USER + 4) | |
335 #endif | |
336 #ifndef CBEM_GETITEMW | |
337 #define CBEM_GETITEMW (WM_USER + 13) | |
442 | 338 #endif |
771 | 339 #ifndef HDN_GETDISPINFOA |
340 #define HDN_GETDISPINFOA (HDN_FIRST - 9) | |
341 #endif | |
342 #ifndef HDN_GETDISPINFOW | |
343 #define HDN_GETDISPINFOW (HDN_FIRST - 29) | |
344 #endif | |
345 #ifndef TBN_GETDISPINFOA | |
346 #define TBN_GETDISPINFOA (TBN_FIRST - 16) | |
442 | 347 #endif |
771 | 348 #ifndef TBN_GETDISPINFOW |
349 #define TBN_GETDISPINFOW (TBN_FIRST - 17) | |
350 #endif | |
351 #ifndef TBN_GETINFOTIPA | |
352 #define TBN_GETINFOTIPA (TBN_FIRST - 18) | |
442 | 353 #endif |
771 | 354 #ifndef TBN_GETINFOTIPW |
355 #define TBN_GETINFOTIPW (TBN_FIRST - 19) | |
356 #endif | |
357 #ifndef TTN_GETDISPINFOA | |
358 #define TTN_GETDISPINFOA (TTN_FIRST - 0) | |
359 #endif | |
360 #ifndef TTN_GETDISPINFOW | |
361 #define TTN_GETDISPINFOW (TTN_FIRST - 10) | |
442 | 362 #endif |
771 | 363 |
364 #if (_WIN32_IE >= 0x0400) | |
365 | |
366 #ifndef LVN_GETINFOTIPA | |
367 #define LVN_GETINFOTIPA (LVN_FIRST - 57) | |
368 #endif | |
369 #ifndef LVN_GETINFOTIPW | |
370 #define LVN_GETINFOTIPW (LVN_FIRST - 58) | |
442 | 371 #endif |
771 | 372 #ifndef TVN_GETINFOTIPA |
373 #define TVN_GETINFOTIPA (TVN_FIRST - 13) | |
374 #endif | |
375 #ifndef TVN_GETINFOTIPW | |
376 #define TVN_GETINFOTIPW (TVN_FIRST - 14) | |
377 #endif | |
378 #ifndef CBEN_GETDISPINFOA | |
379 #define CBEN_GETDISPINFOA (CBEN_FIRST - 0) | |
442 | 380 #endif |
771 | 381 #ifndef CBEN_GETDISPINFOW |
382 #define CBEN_GETDISPINFOW (CBEN_FIRST - 7) | |
383 #endif | |
384 #ifndef CBEN_DRAGBEGINA | |
385 #define CBEN_DRAGBEGINA (CBEN_FIRST - 8) | |
386 #endif | |
387 #ifndef CBEN_DRAGBEGINW | |
388 #define CBEN_DRAGBEGINW (CBEN_FIRST - 9) | |
442 | 389 #endif |
771 | 390 |
391 #endif /* (_WIN32_IE >= 0x0400) */ | |
392 | |
393 #ifndef CBEN_ENDEDITA | |
394 #define CBEN_ENDEDITA (CBEN_FIRST - 5) | |
442 | 395 #endif |
771 | 396 #ifndef CBEN_ENDEDITW |
397 #define CBEN_ENDEDITW (CBEN_FIRST - 6) | |
398 #endif | |
399 | |
400 #ifndef CBEMAXSTRLEN | |
401 #define CBEMAXSTRLEN 260 | |
442 | 402 #endif |
403 | |
1111 | 404 #ifndef NMCBEENDEDIT |
405 | |
406 typedef struct | |
407 { | |
408 NMHDR hdr; | |
409 BOOL fChanged; | |
410 int iNewSelection; | |
411 WCHAR szText[CBEMAXSTRLEN]; | |
412 int iWhy; | |
771 | 413 } NMCBEENDEDITW, *LPNMCBEENDEDITW, *PNMCBEENDEDITW; |
414 | |
1111 | 415 typedef struct |
416 { | |
417 NMHDR hdr; | |
418 BOOL fChanged; | |
419 int iNewSelection; | |
420 char szText[CBEMAXSTRLEN]; | |
421 int iWhy; | |
771 | 422 } NMCBEENDEDITA, *LPNMCBEENDEDITA,*PNMCBEENDEDITA; |
423 | |
1111 | 424 #endif /* not NMCBEENDEDIT */ |
425 | |
771 | 426 #if (_WIN32_IE >= 0x0400) |
427 | |
1111 | 428 #ifndef NMCBEDRAGBEGIN |
429 | |
430 typedef struct | |
431 { | |
432 NMHDR hdr; | |
433 int iItemid; | |
434 WCHAR szText[CBEMAXSTRLEN]; | |
435 } NMCBEDRAGBEGINW, *LPNMCBEDRAGBEGINW, *PNMCBEDRAGBEGINW; | |
771 | 436 |
1111 | 437 typedef struct |
438 { | |
439 NMHDR hdr; | |
440 int iItemid; | |
441 char szText[CBEMAXSTRLEN]; | |
442 } NMCBEDRAGBEGINA, *LPNMCBEDRAGBEGINA, *PNMCBEDRAGBEGINA; | |
443 | |
444 #endif /* not NMCBEDRAGBEGIN */ | |
445 | |
771 | 446 typedef struct tagNMDATETIMEFORMATA |
447 { | |
1111 | 448 NMHDR nmhdr; |
449 LPCSTR pszFormat; | |
450 SYSTEMTIME st; | |
451 LPCSTR pszDisplay; | |
452 CHAR szDisplay[64]; | |
771 | 453 } NMDATETIMEFORMATA, FAR * LPNMDATETIMEFORMATA; |
454 | |
455 typedef struct tagNMDATETIMEFORMATW | |
456 { | |
1111 | 457 NMHDR nmhdr; |
458 LPCWSTR pszFormat; | |
459 SYSTEMTIME st; | |
460 LPCWSTR pszDisplay; | |
461 WCHAR szDisplay[64]; | |
771 | 462 } NMDATETIMEFORMATW, FAR * LPNMDATETIMEFORMATW; |
463 | |
1683 | 464 #if W32API_INSTALLED_VER < W32API_VER(2,2) |
1304 | 465 |
1111 | 466 typedef struct tagNMTTDISPIFNOA |
467 { | |
468 NMHDR hdr; | |
469 LPSTR lpszText; | |
470 char szText[80]; | |
471 HINSTANCE hinst; | |
472 UINT uFlags; | |
771 | 473 #if (_WIN32_IE >= 0x0300) |
1111 | 474 LPARAM lParam; |
771 | 475 #endif |
476 } NMTTDISPINFOA, FAR *LPNMTTDISPINFOA; | |
477 | |
1111 | 478 typedef struct tagNMTTDISPINFOW |
479 { | |
480 NMHDR hdr; | |
481 LPWSTR lpszText; | |
482 WCHAR szText[80]; | |
483 HINSTANCE hinst; | |
484 UINT uFlags; | |
771 | 485 #if (_WIN32_IE >= 0x0300) |
1111 | 486 LPARAM lParam; |
771 | 487 #endif |
488 } NMTTDISPINFOW, FAR *LPNMTTDISPINFOW; | |
489 | |
1683 | 490 #endif /* W32API_INSTALLED_VER < W32API_VER(2,2) */ |
1304 | 491 |
771 | 492 #endif /* (_WIN32_IE >= 0x0400) */ |
442 | 493 |
771 | 494 /* shlobj.h defines */ |
495 #ifndef BFFM_VALIDATEFAILEDA | |
496 #define BFFM_VALIDATEFAILEDA 3 | |
497 #endif | |
498 #ifndef BFFM_VALIDATEFAILEDW | |
499 #define BFFM_VALIDATEFAILEDW 4 | |
500 #endif | |
501 #ifndef BFFM_SETSELECTIONA | |
502 #define BFFM_SETSELECTIONA (WM_USER + 102) | |
503 #endif | |
504 #ifndef BFFM_SETSELECTIONW | |
505 #define BFFM_SETSELECTIONW (WM_USER + 103) | |
506 #endif | |
507 #ifndef BFFM_SETSTATUSTEXTA | |
508 #define BFFM_SETSTATUSTEXTA (WM_USER + 100) | |
509 #endif | |
510 #ifndef BFFM_SETSTATUSTEXTW | |
511 #define BFFM_SETSTATUSTEXTW (WM_USER + 104) | |
512 #endif | |
513 #ifndef SHARD_PATHA | |
514 #define SHARD_PATHA 2 | |
515 #endif | |
516 #ifndef SHARD_PATHW | |
517 #define SHARD_PATHW 3 | |
518 #endif | |
519 #ifndef SHCNF_PATHA | |
520 #define SHCNF_PATHA 1 | |
521 #endif | |
522 #ifndef SHCNF_PATHW | |
523 #define SHCNF_PATHW 5 | |
524 #endif | |
525 #ifndef SHCNF_PRINTERA | |
526 #define SHCNF_PRINTERA 2 | |
527 #endif | |
528 #ifndef SHCNF_PRINTERW | |
529 #define SHCNF_PRINTERW 6 | |
530 #endif | |
531 #ifndef BFFM_VALIDATEFAILED | |
532 #ifdef UNICODE | |
533 #define BFFM_VALIDATEFAILED BFFM_VALIDATEFAILEDW | |
534 #else | |
535 #define BFFM_VALIDATEFAILED BFFM_VALIDATEFAILEDA | |
536 #endif | |
819 | 537 #endif |
442 | 538 |
800 | 539 /* winnls.h defines */ |
819 | 540 #ifndef MAC_CHARSET |
541 #define MAC_CHARSET 77 | |
542 #endif | |
800 | 543 #ifndef LOCALE_RETURN_NUMBER |
819 | 544 #define LOCALE_RETURN_NUMBER 0x20000000 |
800 | 545 #endif |
546 | |
771 | 547 /* OEM resources */ |
548 #ifndef OCR_ICOCUR | |
549 #define OCR_ICOCUR 32647 | |
550 #define OIC_SAMPLE 32512 | |
551 #define OIC_HAND 32513 | |
552 #define OIC_QUES 32514 | |
553 #define OIC_BANG 32515 | |
554 #define OIC_NOTE 32516 | |
555 #define OIC_WINLOGO 32517 | |
556 #endif | |
557 | |
558 /* More Cygwin stupidity: Current w32api's winuser.h has IME message | |
559 constants and they conflict with imm.h. (NOTE: Currently fixed, but | |
560 I'm sure the problems were present post 1.0.) */ | |
561 #undef WM_IME_STARTCOMPOSITION | |
562 #undef WM_IME_ENDCOMPOSITION | |
563 #undef WM_IME_COMPOSITION | |
564 #undef WM_IME_KEYLAST | |
565 #undef WM_IME_SETCONTEXT | |
566 #undef WM_IME_NOTIFY | |
567 #undef WM_IME_CONTROL | |
568 #undef WM_IME_COMPOSITIONFULL | |
569 #undef WM_IME_SELECT | |
570 #undef WM_IME_CHAR | |
571 #undef WM_IME_KEYDOWN | |
572 #undef WM_IME_KEYUP | |
573 | |
574 #include <imm.h> | |
575 | |
1683 | 576 #if W32API_INSTALLED_VER < W32API_VER(2,4) |
771 | 577 typedef struct _SHQUERYRBINFO |
578 { | |
579 DWORD cbSize; | |
580 __int64 i64Size; | |
581 __int64 i64NumItems; | |
582 } SHQUERYRBINFO, *LPSHQUERYRBINFO; | |
1683 | 583 #endif |
771 | 584 |
585 typedef LPCDLGTEMPLATE LPCDLGTEMPLATEW; | |
586 typedef LPCDLGTEMPLATE LPCDLGTEMPLATEA; | |
587 | |
1685 | 588 #else /* !CYGWIN_HEADERS */ |
4893
99f2102552d7
Add typedefs for PCVOID and PDWORD_PTR for non-Cygwin-headers folks.
Ben Wing <ben@xemacs.org>
parents:
4867
diff
changeset
|
589 |
1685 | 590 #define W32API_VER(major,minor) 0 |
591 #define W32API_INSTALLED_VER 0 | |
4893
99f2102552d7
Add typedefs for PCVOID and PDWORD_PTR for non-Cygwin-headers folks.
Ben Wing <ben@xemacs.org>
parents:
4867
diff
changeset
|
592 |
99f2102552d7
Add typedefs for PCVOID and PDWORD_PTR for non-Cygwin-headers folks.
Ben Wing <ben@xemacs.org>
parents:
4867
diff
changeset
|
593 /* Some types that show up in Cygwin headers but not in Visual Studio headers, |
99f2102552d7
Add typedefs for PCVOID and PDWORD_PTR for non-Cygwin-headers folks.
Ben Wing <ben@xemacs.org>
parents:
4867
diff
changeset
|
594 and cause problems if we used Cygwin headers to generate |
99f2102552d7
Add typedefs for PCVOID and PDWORD_PTR for non-Cygwin-headers folks.
Ben Wing <ben@xemacs.org>
parents:
4867
diff
changeset
|
595 intl-auto-encap-win32.[ch]. */ |
99f2102552d7
Add typedefs for PCVOID and PDWORD_PTR for non-Cygwin-headers folks.
Ben Wing <ben@xemacs.org>
parents:
4867
diff
changeset
|
596 typedef LPCVOID PCVOID; |
99f2102552d7
Add typedefs for PCVOID and PDWORD_PTR for non-Cygwin-headers folks.
Ben Wing <ben@xemacs.org>
parents:
4867
diff
changeset
|
597 |
771 | 598 #endif /* CYGWIN_HEADERS */ |
599 | |
600 /* Not in VC 6 */ | |
601 #ifndef BIF_NEWDIALOGSTYLE | |
602 #define BIF_NEWDIALOGSTYLE 64 | |
603 #endif | |
442 | 604 |
4538 | 605 #if defined (CYGWIN) && (CYGWIN_VERSION_DLL_COMBINED < 190) |
442 | 606 |
607 /* All but wcscmp and wcslen left out of Cygwin headers -- but present | |
771 | 608 in /usr/include/mingw/string.h! */ |
442 | 609 wchar_t* wcscat (wchar_t*, const wchar_t*); |
610 wchar_t* wcschr (const wchar_t*, wchar_t); | |
611 int wcscoll (const wchar_t*, const wchar_t*); | |
612 wchar_t* wcscpy (wchar_t*, const wchar_t*); | |
771 | 613 wchar_t* wcsdup (const wchar_t*); |
442 | 614 size_t wcscspn (const wchar_t*, const wchar_t*); |
615 /* Note: No wcserror in CRTDLL. */ | |
616 wchar_t* wcsncat (wchar_t*, const wchar_t*, size_t); | |
771 | 617 int wcsncmp (const wchar_t*, const wchar_t*, size_t); |
618 wchar_t* wcsncpy (wchar_t*, const wchar_t*, size_t); | |
619 wchar_t* wcspbrk (const wchar_t*, const wchar_t*); | |
620 wchar_t* wcsrchr (const wchar_t*, wchar_t); | |
621 size_t wcsspn (const wchar_t*, const wchar_t*); | |
622 wchar_t* wcsstr (const wchar_t*, const wchar_t*); | |
623 wchar_t* wcstok (wchar_t*, const wchar_t*); | |
624 size_t wcsxfrm (wchar_t*, const wchar_t*, size_t); | |
442 | 625 |
626 #endif /* CYGWIN */ | |
627 | |
771 | 628 /* ------------------------- Unicode encapsulation ------------------------- */ |
629 | |
2367 | 630 /* See intl-win32.c for more information about Unicode-encapsulation */ |
771 | 631 |
800 | 632 #define ERROR_WHEN_NONINTERCEPTED_FUNS_USED |
633 | |
771 | 634 #include "intl-auto-encap-win32.h" |
635 | |
636 /* would be encapsulatable but for parsing problems */ | |
800 | 637 |
638 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
639 #undef DefWindowProc | |
640 #define DefWindowProc error use qxeDefWindowProc or DefWindowProcA/DefWindowProcW | |
641 #endif | |
771 | 642 LRESULT qxeDefWindowProc (HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam); |
800 | 643 |
644 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
645 #undef CallWindowProc | |
646 #define CallWindowProc error use qxeCallWindowProc or CallWindowProcA/CallWindowProcW | |
647 #endif | |
771 | 648 LRESULT qxeCallWindowProc (WNDPROC lpPrevWndFunc, HWND hWnd, UINT Msg, |
649 WPARAM wParam, LPARAM lParam); | |
800 | 650 |
651 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
652 #undef DefDlgProc | |
653 #define DefDlgProc error use qxeDefDlgProc or DefDlgProcA/DefDlgProcW | |
654 #endif | |
771 | 655 LRESULT qxeDefDlgProc (HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam); |
800 | 656 |
657 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
658 #undef SetWindowsHook | |
659 #define SetWindowsHook error use qxeSetWindowsHook or SetWindowsHookA/SetWindowsHookW | |
660 #endif | |
771 | 661 HHOOK qxeSetWindowsHook (int nFilterType, HOOKPROC pfnFilterProc); |
800 | 662 |
663 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
664 #undef DefMDIChildProc | |
665 #define DefMDIChildProc error use qxeDefMDIChildProc or DefMDIChildProcA/DefMDIChildProcW | |
666 #endif | |
771 | 667 LRESULT qxeDefMDIChildProc (HWND hWnd, UINT uMsg, WPARAM wParam, |
668 LPARAM lParam); | |
669 | |
800 | 670 #undef GetEnvironmentStrings |
671 #undef GetEnvironmentStringsA | |
672 #define GetEnvironmentStringsA GetEnvironmentStrings | |
673 Extbyte * qxeGetEnvironmentStrings (void); | |
674 | |
771 | 675 /* would be encapsulatable but for Cygwin problems */ |
800 | 676 |
677 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
1111 | 678 #undef DdeCreateStringHandle |
679 #define DdeCreateStringHandle error use qxeDdeCreateStringHandle or DdeCreateStringHandleA/DdeCreateStringHandleW | |
680 #endif | |
681 HSZ qxeDdeCreateStringHandle (DWORD idInst, const Extbyte * psz, int iCodePage); | |
682 | |
683 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
800 | 684 #undef RegConnectRegistry |
685 #define RegConnectRegistry error use qxeRegConnectRegistry or RegConnectRegistryA/RegConnectRegistryW | |
686 #endif | |
771 | 687 LONG qxeRegConnectRegistry (const Extbyte * lpMachineName, HKEY hKey, PHKEY phkResult); |
800 | 688 |
689 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
690 #undef ExtractIconEx | |
691 #define ExtractIconEx error use qxeExtractIconEx or ExtractIconExA/ExtractIconExW | |
692 #endif | |
771 | 693 UINT qxeExtractIconEx (const Extbyte * lpszFile, int nIconIndex, HICON FAR * phiconLarge, HICON FAR * phiconSmall, UINT nIcons); |
800 | 694 |
695 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
696 #undef GetICMProfile | |
697 #define GetICMProfile error use qxeGetICMProfile or GetICMProfileA/GetICMProfileW | |
698 #endif | |
771 | 699 BOOL qxeGetICMProfile (HDC arg1, LPDWORD arg2, Extbyte * arg3); |
800 | 700 |
701 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
702 #undef UpdateICMRegKey | |
703 #define UpdateICMRegKey error use qxeUpdateICMRegKey or UpdateICMRegKeyA/UpdateICMRegKeyW | |
704 #endif | |
771 | 705 BOOL qxeUpdateICMRegKey (DWORD arg1, Extbyte * arg2, Extbyte * arg3, UINT arg4); |
706 | |
2500 | 707 /* would be encapsulatable but for header changes in different versions of VC++ */ |
708 | |
709 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
710 #undef EnumResourceTypes | |
711 #define EnumResourceTypes error_use_qxeEnumResourceTypes_or_EnumResourceTypesA_and_EnumResourceTypesW | |
712 #endif | |
713 #if MSC_VERSION >= 1300 | |
714 BOOL qxeEnumResourceTypes (HMODULE hModule, ENUMRESTYPEPROCW lpEnumFunc, LONG lParam); | |
715 #else | |
716 BOOL qxeEnumResourceTypes (HMODULE hModule, ENUMRESTYPEPROC lpEnumFunc, LONG lParam); | |
717 #endif | |
718 | |
719 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
720 #undef EnumResourceNames | |
721 #define EnumResourceNames error_use_qxeEnumResourceNames_or_EnumResourceNamesA_and_EnumResourceNamesW | |
722 #endif | |
723 #if MSC_VERSION >= 1300 | |
724 BOOL qxeEnumResourceNames (HMODULE hModule, const Extbyte * lpType, ENUMRESNAMEPROCW lpEnumFunc, LONG lParam); | |
725 #else | |
726 BOOL qxeEnumResourceNames (HMODULE hModule, const Extbyte * lpType, ENUMRESNAMEPROC lpEnumFunc, LONG lParam); | |
727 #endif | |
728 | |
729 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
730 #undef EnumResourceLanguages | |
731 #define EnumResourceLanguages error_use_qxeEnumResourceLanguages_or_EnumResourceLanguagesA_and_EnumResourceLanguagesW | |
732 #endif | |
733 #if MSC_VERSION >= 1300 | |
734 BOOL qxeEnumResourceLanguages (HMODULE hModule, const Extbyte * lpType, const Extbyte * lpName, ENUMRESLANGPROCW lpEnumFunc, LONG lParam); | |
735 #else | |
736 BOOL qxeEnumResourceLanguages (HMODULE hModule, const Extbyte * lpType, const Extbyte * lpName, ENUMRESLANGPROC lpEnumFunc, LONG lParam); | |
737 #endif | |
738 | |
771 | 739 /* files */ |
800 | 740 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED |
741 #undef FindFirstFile | |
742 #define FindFirstFile error use qxeFindFirstFile or FindFirstFileA/FindFirstFileW | |
743 #endif | |
771 | 744 HANDLE qxeFindFirstFile (const Extbyte *lpFileName, |
745 WIN32_FIND_DATAW *lpFindFileData); | |
800 | 746 |
747 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
748 #undef FindNextFile | |
749 #define FindNextFile error use qxeFindNextFile or FindNextFileA/FindNextFileW | |
750 #endif | |
771 | 751 BOOL qxeFindNextFile (HANDLE hFindFile, WIN32_FIND_DATAW *lpFindFileData); |
752 | |
753 /* shell */ | |
800 | 754 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED |
755 #undef SHGetFileInfo | |
756 #define SHGetFileInfo error use qxeSHGetFileInfo or SHGetFileInfoA/SHGetFileInfoW | |
757 #endif | |
771 | 758 DWORD qxeSHGetFileInfo (const Extbyte *pszPath, DWORD dwFileAttributes, |
759 SHFILEINFOW *psfi, UINT cbFileInfo, UINT uFlags); | |
800 | 760 |
761 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
762 #undef SHBrowseForFolder | |
763 #define SHBrowseForFolder error use qxeSHBrowseForFolder or SHBrowseForFolderA/SHBrowseForFolderW | |
764 #endif | |
771 | 765 LPITEMIDLIST qxeSHBrowseForFolder (LPBROWSEINFOW lpbi); |
800 | 766 |
767 /* Not Unicode-split */ | |
771 | 768 VOID qxeSHAddToRecentDocs (UINT uFlags, LPCVOID pv); |
800 | 769 |
770 /* Not Unicode-split */ | |
771 | 771 VOID qxeSHChangeNotify (LONG wEventId, UINT uFlags, LPCVOID dwItem1, |
772 LPCVOID dwItem2); | |
800 | 773 |
774 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
775 #undef SHGetDataFromIDList | |
776 #define SHGetDataFromIDList error use qxeSHGetDataFromIDList or SHGetDataFromIDListA/SHGetDataFromIDListW | |
777 #endif | |
771 | 778 HRESULT qxeSHGetDataFromIDList (IShellFolder *psf, LPCITEMIDLIST pidl, |
779 int nFormat, PVOID pv, int cb); | |
780 | |
781 /* devmode */ | |
800 | 782 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED |
783 #undef CreateDC | |
784 #define CreateDC error use qxeCreateDC or CreateDCA/CreateDCW | |
785 #endif | |
771 | 786 HDC qxeCreateDC (const Extbyte *lpszDriver, const Extbyte *lpszDevice, |
787 const Extbyte *lpszOutput, CONST DEVMODEW *lpInitData); | |
800 | 788 |
789 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
790 #undef ResetDC | |
791 #define ResetDC error use qxeResetDC or ResetDCA/ResetDCW | |
792 #endif | |
771 | 793 HDC qxeResetDC (HDC hdc, CONST DEVMODEW *lpInitData); |
800 | 794 |
795 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
796 #undef OpenPrinter | |
797 #define OpenPrinter error use qxeOpenPrinter or OpenPrinterA/OpenPrinterW | |
798 #endif | |
771 | 799 DWORD qxeOpenPrinter (Extbyte *pPrinterName, LPHANDLE phPrinter, |
800 LPPRINTER_DEFAULTSW pDefaultconst); | |
800 | 801 |
802 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
803 #undef DocumentProperties | |
804 #define DocumentProperties error use qxeDocumentProperties or DocumentPropertiesA/DocumentPropertiesW | |
805 #endif | |
771 | 806 LONG qxeDocumentProperties (HWND hWnd, HANDLE hPrinter, Extbyte *pDeviceName, |
807 DEVMODEW *pDevModeOutput, DEVMODEW *pDevModeInput, | |
808 DWORD fMode); | |
800 | 809 |
810 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
811 #undef PrintDlg | |
812 #define PrintDlg error use qxePrintDlg or PrintDlgA/PrintDlgW | |
813 #endif | |
771 | 814 BOOL qxePrintDlg (PRINTDLGW *lppd); |
800 | 815 |
816 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
817 #undef PageSetupDlg | |
818 #define PageSetupDlg error use qxePageSetupDlg or PageSetupDlgA/PageSetupDlgW | |
819 #endif | |
771 | 820 BOOL qxePageSetupDlg (PAGESETUPDLGW *lppd); |
821 | |
822 /* fonts */ | |
800 | 823 |
824 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
825 #undef EnumFontFamiliesEx | |
826 #define EnumFontFamiliesEx error use qxeEnumFontFamiliesEx or EnumFontFamiliesExA/EnumFontFamiliesExW | |
827 #endif | |
771 | 828 int qxeEnumFontFamiliesEx (HDC hdc, LOGFONTW *lpLogfont, |
829 FONTENUMPROCW lpEnumFontFamProc, LPARAM lParam, | |
830 DWORD dwFlags); | |
800 | 831 |
832 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
833 #undef CreateFontIndirect | |
834 #define CreateFontIndirect error use qxeCreateFontIndirect or CreateFontIndirectA/CreateFontIndirectW | |
835 #endif | |
771 | 836 HFONT qxeCreateFontIndirect (CONST LOGFONTW *lplf); |
800 | 837 |
2500 | 838 #if defined (HAVE_MS_WINDOWS) |
800 | 839 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED |
840 #undef ImmSetCompositionFont | |
841 #define ImmSetCompositionFont error use qxeImmSetCompositionFont or ImmSetCompositionFontA/ImmSetCompositionFontW | |
842 #endif | |
771 | 843 BOOL qxeImmSetCompositionFont (HIMC imc, LOGFONTW *lplf); |
2500 | 844 #endif /* defined (HAVE_MS_WINDOWS) */ |
800 | 845 |
2500 | 846 #if defined (HAVE_MS_WINDOWS) |
800 | 847 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED |
848 #undef ImmGetCompositionFont | |
849 #define ImmGetCompositionFont error use qxeImmGetCompositionFont or ImmGetCompositionFontA/ImmGetCompositionFontW | |
850 #endif | |
771 | 851 BOOL qxeImmGetCompositionFont (HIMC imc, LOGFONTW *lplf); |
2500 | 852 #endif /* defined (HAVE_MS_WINDOWS) */ |
853 | |
854 #if defined (HAVE_MS_WINDOWS) | |
855 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
856 #undef ImmSetCompositionString | |
857 #define ImmSetCompositionString error_use_qxeImmSetCompositionString_or_ImmSetCompositionStringA_and_ImmSetCompositionStringW | |
858 #endif | |
859 #if MSC_VERSION >= 1300 | |
860 BOOL qxeImmSetCompositionString (HIMC arg1, DWORD dwIndex, LPVOID lpComp, DWORD arg4, LPCVOID lpRead, DWORD arg6); | |
861 #else | |
862 BOOL qxeImmSetCompositionString (HIMC arg1, DWORD dwIndex, LPCVOID lpComp, DWORD arg4, LPCVOID lpRead, DWORD arg6); | |
863 #endif | |
864 #endif /* defined (HAVE_MS_WINDOWS) */ | |
800 | 865 |
866 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
867 #undef GetObject | |
868 #define GetObject error use qxeGetObject or GetObjectA/GetObjectW | |
869 #endif | |
771 | 870 int qxeGetObject (HGDIOBJ hgdiobj, int cbBuffer, LPVOID lpvObject); |
800 | 871 |
872 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
873 #undef GetTextMetrics | |
874 #define GetTextMetrics error use qxeGetTextMetrics or GetTextMetricsA/GetTextMetricsW | |
875 #endif | |
771 | 876 BOOL qxeGetTextMetrics (HDC hdc, LPTEXTMETRICW lptm); |
877 | |
878 /* COMMCTRL.H */ | |
800 | 879 |
880 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
881 #undef SendMessage | |
882 #define SendMessage error use qxeSendMessage or SendMessageA/SendMessageW | |
883 #endif | |
771 | 884 LRESULT qxeSendMessage (HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam); |
885 | |
886 /* windows */ | |
800 | 887 |
888 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
889 #undef RegisterClass | |
890 #define RegisterClass error use qxeRegisterClass or RegisterClassA/RegisterClassW | |
891 #endif | |
771 | 892 ATOM qxeRegisterClass (CONST WNDCLASSW * lpWndClass); |
800 | 893 |
894 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
895 #undef UnregisterClass | |
896 #define UnregisterClass error use qxeUnregisterClass or UnregisterClassA/UnregisterClassW | |
897 #endif | |
771 | 898 BOOL qxeUnregisterClass (const Extbyte * lpClassName, HINSTANCE hInstance); |
800 | 899 |
900 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
901 #undef RegisterClassEx | |
902 #define RegisterClassEx error use qxeRegisterClassEx or RegisterClassExA/RegisterClassExW | |
903 #endif | |
771 | 904 ATOM qxeRegisterClassEx (CONST WNDCLASSEXW * arg1); |
800 | 905 |
906 #ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED | |
907 #undef CreateWindow | |
908 #define CreateWindow error use qxeCreateWindow or CreateWindowA/CreateWindowW | |
909 #endif | |
771 | 910 #define qxeCreateWindow(lpClassName, lpWindowName, dwStyle, x, y, \ |
911 nWidth, nHeight, hWndParent, hMenu, hInstance, \ | |
912 lpParam) \ | |
913 qxeCreateWindowEx (0L, lpClassName, lpWindowName, dwStyle, x, y, \ | |
914 nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam) | |
915 | |
916 /* ------------------------- Unicode conversion ------------------------- */ | |
917 | |
918 /* Set early in command-line processing, when -nuni or | |
919 --no-unicode-lib-calls is seen. */ | |
920 extern int no_mswin_unicode_lib_calls; | |
2367 | 921 /* Set early, in init_win32_very_very_early(). */ |
771 | 922 extern int mswindows_windows9x_p; |
923 #define XEUNICODE_P (!mswindows_windows9x_p && !no_mswin_unicode_lib_calls) | |
924 | |
925 #define XELPTSTR LPWSTR | |
926 #define XELPCTSTR LPCWSTR | |
442 | 927 |
928 #define XETCHAR_SIZE (XEUNICODE_P ? sizeof (WCHAR) : sizeof (CHAR)) | |
929 #define MAX_XETCHAR_SIZE sizeof (WCHAR) | |
930 #define XETEXT1(arg) (XEUNICODE_P ? ((char *) (L##arg)) : (arg)) | |
931 /* We need to do this indirection in case ARG is also a manifest constant. | |
932 I don't really understand why. --ben */ | |
933 #define XETEXT(arg) XETEXT1(arg) | |
934 #define XECOPY_TCHAR(ptr, ch) \ | |
935 (XEUNICODE_P ? (* (LPWSTR) (ptr) = L##ch) : (* (LPSTR) (ptr) = (ch))) | |
2421 | 936 #define qxetcslen(arg) \ |
771 | 937 (XEUNICODE_P ? wcslen ((wchar_t *) arg) : strlen (arg)) |
2421 | 938 #define qxetcsbytelen(arg) \ |
771 | 939 (XEUNICODE_P ? wcslen ((wchar_t *) arg) * XETCHAR_SIZE : strlen (arg)) |
2421 | 940 #define qxetcscmp(s1, s2) \ |
442 | 941 (XEUNICODE_P ? wcscmp ((wchar_t *) s1, (wchar_t *) s2) \ |
942 : strcmp (s1, s2)) | |
2421 | 943 #define qxetcscpy(s1, s2) \ |
442 | 944 (XEUNICODE_P ? (char *) wcscpy ((wchar_t *) s1, (wchar_t *) s2) \ |
945 : strcpy (s1, s2)) | |
2421 | 946 #define qxetcsncpy(s1, s2, n) \ |
771 | 947 (XEUNICODE_P ? (char *) wcsncpy ((wchar_t *) s1, (wchar_t *) s2, n) \ |
948 : strncpy (s1, s2, n)) | |
2421 | 949 #define qxetcschr(s, ch) \ |
442 | 950 (XEUNICODE_P ? (char *) wcschr ((wchar_t *) s, (WCHAR) ch) \ |
951 : strchr (s, ch)) | |
2421 | 952 #define qxetcsrchr(s, ch) \ |
442 | 953 (XEUNICODE_P ? (char *) wcsrchr ((wchar_t *) s, (WCHAR) ch) \ |
954 : strrchr (s, ch)) | |
2421 | 955 #define qxetcsdup(s) \ |
771 | 956 (XEUNICODE_P ? (char *) wcsdup ((wchar_t *) s) \ |
957 : xstrdup (s)) | |
442 | 958 |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
959 #define ITEXT_TO_TSTR(in) ITEXT_TO_EXTERNAL (in, Qmswindows_tstr) |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
960 #define LISP_STRING_TO_TSTR(in) LISP_STRING_TO_EXTERNAL (in, Qmswindows_tstr) |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
961 #define TSTR_TO_ITEXT(in) EXTERNAL_TO_ITEXT (in, Qmswindows_tstr) |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
962 #define TSTR_TO_ITEXT_MALLOC(in) \ |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
963 EXTERNAL_TO_ITEXT_MALLOC (in, Qmswindows_tstr) |
771 | 964 |
965 #define build_tstr_string(in) \ | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
966 make_extstring (in, qxetcsbytelen ((Extbyte *) in), Qmswindows_tstr) |
771 | 967 |
968 #define MAX_ANSI_CHAR_LEN 1 | |
969 #define MAX_UNICODE_CHAR_LEN 2 | |
970 | |
971 DECLARE_INLINE_HEADER (int ansi_char_to_text (int ch, Extbyte *t)) | |
972 { | |
973 ch &= 0xFF; | |
974 t[0] = ch; | |
975 return 1; | |
976 } | |
977 | |
978 DECLARE_INLINE_HEADER (int unicode_char_to_text (int ch, Extbyte *t)) | |
979 { | |
980 t[0] = ch & 0xFF; | |
981 t[1] = (ch >> 8) & 0xFF; | |
982 return 2; | |
983 } | |
442 | 984 |
771 | 985 Extbyte *convert_multibyte_to_unicode_malloc (const Extbyte *src, |
986 Bytecount n, | |
987 int cp, Bytecount *size_out); | |
2367 | 988 Extbyte *convert_unicode_to_multibyte_malloc (const Extbyte *src, |
989 Bytecount n, | |
990 int cp, Bytecount *size_out); | |
867 | 991 Ibyte *convert_multibyte_to_internal_malloc (const Extbyte *src, |
771 | 992 Bytecount n, |
993 int cp, Bytecount *size_out); | |
994 void convert_multibyte_to_unicode_dynarr (const Extbyte *src, Bytecount n, | |
995 int cp, unsigned_char_dynarr *dst); | |
2367 | 996 void convert_unicode_to_multibyte_dynarr (const Extbyte *src, Bytecount n, |
997 int cp, unsigned_char_dynarr *dst); | |
998 | |
999 Bytecount unicode_multibyte_convert_size (const char *srctext, const void *src, | |
1000 Bytecount src_size, int to_unicode, | |
1001 int cp); | |
1002 void *unicode_multibyte_convert_copy_data (const char *srctext, | |
1003 void *alloca_data); | |
1004 | |
1005 /* NOTE: If you make two invocations of the following functions in the same | |
1006 subexpression and use the exact same expression for the source in both | |
1007 cases, you will lose. In this unlikely case, you may get an abort, and | |
1008 need to rewrite the code. | |
1009 | |
1010 We need to use ALLOCA_FUNCALL_OK here, see NEW_DFC in text.h. | |
1011 */ | |
1012 | |
1013 #ifdef WEXTTEXT_IS_WIDE | |
1014 #define MULTIBYTE_TO_WEXTTEXT(str) \ | |
1015 ((Wexttext *) \ | |
1016 unicode_multibyte_convert_copy_data \ | |
1017 (#str, ALLOCA_FUNCALL_OK (unicode_multibyte_convert_size \ | |
1018 (#str, str, strlen (str) + 1, 1, CP_ACP)))) | |
1019 | |
1020 #define WEXTTEXT_TO_MULTIBYTE(str) \ | |
1021 ((Extbyte *) \ | |
1022 unicode_multibyte_convert_copy_data \ | |
1023 (#str, ALLOCA_FUNCALL_OK (unicode_multibyte_convert_size \ | |
1024 (#str, str, \ | |
1025 (wcslen (str) + 1) * sizeof (WCHAR), 0, \ | |
1026 CP_ACP)))) | |
1027 #else | |
1028 #define MULTIBYTE_TO_WEXTTEXT(str) ((Wexttext *) (str)) | |
1029 #define WEXTTEXT_TO_MULTIBYTE(str) ((Extbyte *) (str)) | |
1030 #endif | |
1031 | |
1032 /* #### mbstowcs() uses MB_ERR_INVALID_CHARS in addition to MB_PRECOMPOSED. | |
1033 Should we do this? But then we have to handle errors. | |
1034 #### Do we already check for invalid sequences in the coding system? */ | |
1035 #define MBTOWC_OPTIONS MB_PRECOMPOSED /* | MB_ERR_INVALID_CHARS */ | |
1036 /* The following options are what wcstombs() uses in the CRT. It uses | |
1037 NULL in place of "~". */ | |
1038 #define WCTOMB_OPTIONS WC_COMPOSITECHECK | WC_SEPCHARS | |
1039 #define WCTOMB_INVALID_STRING "~" | |
771 | 1040 |
1041 /* ------------------------- Other Mule stuff ------------------------- */ | |
1042 | |
1043 LCID mswindows_current_locale (void); | |
1044 int mswindows_locale_to_code_page (LCID lcid); | |
1045 int mswindows_locale_to_oem_code_page (LCID lcid); | |
1046 | |
1047 /* ------------------------- Filename conversion ------------------------- */ | |
1048 | |
1049 #ifdef CYGWIN | |
1743 | 1050 |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1051 /* We should just remove the Windows 9x support */ |
1743 | 1052 |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1053 #define CCP_POSIX_TO_WIN_T \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1054 (XEUNICODE_P ? CCP_POSIX_TO_WIN_W : CCP_POSIX_TO_WIN_A) |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1055 #define CCP_WIN_T_TO_POSIX \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1056 (XEUNICODE_P ? CCP_WIN_W_TO_POSIX : CCP_WIN_A_TO_POSIX) |
1743 | 1057 |
771 | 1058 #endif |
1059 | |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1060 #ifdef HAVE_CYGWIN_CONV_PATH |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1061 #define LOCAL_FILE_FORMAT_TO_TSTR(path, out) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1062 do { \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1063 const Ibyte *lfftt = (path); \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1064 const Extbyte **lffttout = (const Extbyte **) &(out); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1065 if (isalpha (lfftt[0]) && (IS_DEVICE_SEP (lfftt[1]))) \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1066 PATHNAME_CONVERT_OUT_TSTR (lfftt, *lffttout); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1067 else \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1068 { \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1069 int lfftt_size; \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1070 Extbyte *lfftt_utf8_path; \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1071 Extbyte *lfftt_tstr_path; \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1072 \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1073 PATHNAME_CONVERT_OUT_UTF_8 (lfftt, lfftt_utf8_path); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1074 lfftt_size = cygwin_conv_path (CCP_POSIX_TO_WIN_T | CCP_RELATIVE, \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1075 lfftt_utf8_path, NULL, 0); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1076 lfftt_tstr_path = alloca_extbytes (lfftt_size); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1077 cygwin_conv_path (CCP_POSIX_TO_WIN_T | CCP_RELATIVE, \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1078 lfftt_utf8_path, lfftt_tstr_path, lfftt_size); \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1079 *lffttout = lfftt_tstr_path; \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1080 } \ |
442 | 1081 } while (0) |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1082 #define TSTR_TO_LOCAL_FILE_FORMAT(path, out) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1083 do { \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1084 const Extbyte *ttlff = (path); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1085 int ttlff_size; \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1086 Extbyte *ttlff_utf8_path; \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1087 \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1088 ttlff_size = cygwin_conv_path (CCP_WIN_T_TO_POSIX | CCP_RELATIVE, \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1089 ttlff, NULL, 0); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1090 ttlff_utf8_path = alloca_extbytes (ttlff_size); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1091 cygwin_conv_path (CCP_WIN_T_TO_POSIX | CCP_RELATIVE, \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1092 ttlff, ttlff_utf8_path, ttlff_size); \ |
4988
4cfb6aeb989d
fix compile problems on Windows native
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
1093 (out) = EXTERNAL_TO_ITEXT (ttlff_utf8_path, Qutf_8); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1094 } while (0) |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1095 #else /* not HAVE_CYGWIN_CONV_PATH */ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1096 #define LOCAL_FILE_FORMAT_TO_TSTR(path, out) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1097 do { \ |
4867
7822019c5d98
Revert cast in check_writable() and fix up macros to use const.
Vin Shelton <acs@xemacs.org>
parents:
4858
diff
changeset
|
1098 const Ibyte *lfftt; \ |
4988
4cfb6aeb989d
fix compile problems on Windows native
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
1099 const Extbyte **lffttout = (const Extbyte **) &(out); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1100 \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1101 LOCAL_FILE_FORMAT_TO_INTERNAL_MSWIN (path, lfftt); \ |
4988
4cfb6aeb989d
fix compile problems on Windows native
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
1102 PATHNAME_CONVERT_OUT_TSTR (lfftt, *lffttout); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1103 } while (0) |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1104 #define TSTR_TO_LOCAL_FILE_FORMAT(path, out) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1105 do { \ |
4867
7822019c5d98
Revert cast in check_writable() and fix up macros to use const.
Vin Shelton <acs@xemacs.org>
parents:
4858
diff
changeset
|
1106 const Ibyte *ttlff; \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1107 \ |
4988
4cfb6aeb989d
fix compile problems on Windows native
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
1108 ttlff = TSTR_TO_ITEXT (path); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1109 INTERNAL_MSWIN_TO_LOCAL_FILE_FORMAT (ttlff, out); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1110 } while (0) |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1111 #endif /* (not) HAVE_CYGWIN_CONV_PATH */ |
442 | 1112 |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1113 #define LISP_LOCAL_FILE_FORMAT_TO_TSTR(path, out) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1114 LOCAL_FILE_FORMAT_TO_TSTR (XSTRING_DATA (path), out) |
826 | 1115 /* Convert from local file format, as used in XEmacs, to valid win32 |
1116 filenames as can be given to Windows API routines. Under native XEmacs, | |
1117 this is a no-op, but under Cygwin, the local names look different -- | |
1118 Cygwin mount points, forward slashes, etc. Currently, under Cygwin, we | |
1119 actually allow local names to be of both formats, i.e. Cygwin or Win32 | |
1120 native. So we check to see if we have Win32 native already (a cheesy | |
1121 check, look for letter plus colon at beginning of name) and do nothing | |
1122 in that case. */ | |
1123 | |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1124 #ifdef HAVE_CYGWIN_CONV_PATH |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1125 /* When Cygwin uses UTF-8, we can't just manipulate internal-format data |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1126 with its routines because it will mangle the high bytes, so we need to |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1127 convert to UTF-8 first, then to Win32 TSTR format (i.e. UTF-16, on |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1128 Windows NT), then back to internal format. Routines that want external |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1129 format should avoid this by using LISP_LOCAL_FILE_FORMAT_TO_TSTR(). |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1130 Same thing applies going the other direction. */ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1131 #define LOCAL_FILE_FORMAT_TO_INTERNAL_MSWIN(path, pathout) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1132 do \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1133 { \ |
4867
7822019c5d98
Revert cast in check_writable() and fix up macros to use const.
Vin Shelton <acs@xemacs.org>
parents:
4858
diff
changeset
|
1134 const Extbyte *lfftiwp; \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1135 \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1136 LOCAL_FILE_FORMAT_TO_TSTR (path, lfftiwp); \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1137 (pathout) = TSTR_TO_ITEXT (lfftiwp); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1138 } \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1139 while (0) |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1140 #define INTERNAL_MSWIN_TO_LOCAL_FILE_FORMAT(path, pathout) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1141 do { \ |
4867
7822019c5d98
Revert cast in check_writable() and fix up macros to use const.
Vin Shelton <acs@xemacs.org>
parents:
4858
diff
changeset
|
1142 const Extbyte *iwtlffp; \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1143 iwtlffp = ITEXT_TO_TSTR (path); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1144 TSTR_TO_LOCAL_FILE_FORMAT (iwtlffp, pathout); \ |
442 | 1145 } while (0) |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1146 #elif defined (CYGWIN) |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1147 #define LOCAL_FILE_FORMAT_TO_INTERNAL_MSWIN(path, pathout) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1148 do { \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1149 /* NOTE: It is a bit evil that here and below we are passing \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1150 internal-format data to a function that (nominally) should work \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1151 with external-format data. But in point of fact, the Cygwin \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1152 conversion functions are *NOT* localized, and will fail if they \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1153 get 7-bit ISO2022-encoded data. We know that our internal format \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1154 is ASCII-compatible, and so these functions will work fine with \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1155 this data (maybe ... not when Cygwin uses UTF-8) */ \ |
4867
7822019c5d98
Revert cast in check_writable() and fix up macros to use const.
Vin Shelton <acs@xemacs.org>
parents:
4858
diff
changeset
|
1156 const Ibyte *lfftiwp = (path); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1157 if (isalpha (lfftiwp[0]) && (IS_DEVICE_SEP (lfftiwp[1]))) \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1158 (pathout) = lfftiwp; \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1159 else \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1160 { \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1161 int lfftiw2 = \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1162 cygwin_posix_to_win32_path_list_buf_size ((char *) lfftiwp); \ |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1163 (pathout) = alloca_ibytes (lfftiw2); \ |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1164 cygwin_posix_to_win32_path_list ((char *) lfftiwp, (char *) pathout); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1165 } \ |
442 | 1166 } while (0) |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1167 #define INTERNAL_MSWIN_TO_LOCAL_FILE_FORMAT(path, pathout) \ |
593 | 1168 do { \ |
4867
7822019c5d98
Revert cast in check_writable() and fix up macros to use const.
Vin Shelton <acs@xemacs.org>
parents:
4858
diff
changeset
|
1169 const Ibyte *wtlff1 = (path); \ |
593 | 1170 int wtlff2 = \ |
1171 cygwin_win32_to_posix_path_list_buf_size ((char *) wtlff1); \ | |
2367 | 1172 Ibyte *wtlff3 = alloca_ibytes (wtlff2); \ |
593 | 1173 cygwin_win32_to_posix_path_list ((char *) wtlff1, (char *) wtlff3); \ |
771 | 1174 (pathout) = wtlff3; \ |
442 | 1175 } while (0) |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1176 #else /* not defined (CYGWIN) */ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1177 #define LOCAL_FILE_FORMAT_TO_INTERNAL_MSWIN(path, pathout) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1178 do { \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1179 (pathout) = (path); \ |
442 | 1180 } while (0) |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1181 #define INTERNAL_MSWIN_TO_LOCAL_FILE_FORMAT(path, pathout) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1182 do { \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1183 (pathout) = (path); \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1184 } while (0) |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1185 #endif /* (not) defined (CYGWIN) */ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1186 |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1187 Lisp_Object tstr_to_local_file_format (Extbyte *pathout); |
442 | 1188 |
826 | 1189 /* Convert a local-format file name or URL in internal format into a Win32 |
1190 file name or URL in tstr format. */ | |
1191 | |
1192 #ifdef CYGWIN | |
1193 | |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1194 #define LISP_LOCAL_FILE_FORMAT_MAYBE_URL_TO_TSTR(lispstr, pathout) \ |
2526 | 1195 do \ |
1196 { \ | |
1197 Ibyte *lffmutt_fname1; \ | |
1198 Ibyte *lffmutt_pathint = XSTRING_DATA (lispstr); \ | |
1199 \ | |
1200 if ((lffmutt_fname1 = qxestrchr (lffmutt_pathint, ':')) != NULL \ | |
1201 && *++lffmutt_fname1 == '/' && *++lffmutt_fname1 == '/') \ | |
1202 { \ | |
1203 /* If URL style file, the innards may have Cygwin mount points and \ | |
1204 the like. so separate out the innards, process them, and put back \ | |
1205 together. */ \ | |
1206 if (qxestrncasecmp_ascii (lffmutt_pathint, "file://", 7) == 0) \ | |
1207 { \ | |
1208 Ibyte *lffmutt_path1, *lffmutt_path2; \ | |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1209 LOCAL_FILE_FORMAT_TO_INTERNAL_MSWIN (lffmutt_pathint + 7, \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1210 lffmutt_path1); \ |
2526 | 1211 if (lffmutt_path1 == lffmutt_pathint + 7) /* Optimization */ \ |
1212 lffmutt_path2 = lffmutt_pathint; \ | |
1213 else \ | |
1214 { \ | |
867 | 1215 lffmutt_path2 = alloca_ibytes (7 + qxestrlen (lffmutt_path1) \ |
2526 | 1216 + 1); \ |
1217 qxestrncpy (lffmutt_path2, lffmutt_pathint, 7); \ | |
1218 qxestrcpy (lffmutt_path2 + 7, lffmutt_path1); \ | |
1219 } \ | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1220 (pathout) = ITEXT_TO_TSTR (lffmutt_path2); \ |
2526 | 1221 } \ |
1222 else \ | |
1223 /* A straight URL, just convert */ \ | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4959
diff
changeset
|
1224 (pathout) = LISP_STRING_TO_TSTR (lispstr); \ |
2526 | 1225 } \ |
1226 else \ | |
1227 /* Not URL-style, must be a straight filename. */ \ | |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1228 LISP_LOCAL_FILE_FORMAT_TO_TSTR (lispstr, pathout); \ |
826 | 1229 } while (0) |
1230 | |
1231 #else /* not CYGWIN */ | |
1232 | |
1233 /* URL's (and everything else) are already in the right format */ | |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1234 #define LISP_LOCAL_FILE_FORMAT_MAYBE_URL_TO_TSTR(lispstr, pathout) \ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4827
diff
changeset
|
1235 LISP_LOCAL_FILE_FORMAT_TO_TSTR (lispstr, pathout) |
826 | 1236 |
1237 #endif /* not CYGWIN */ | |
1238 | |
1239 | |
867 | 1240 Ibyte *urlify_filename (Ibyte *filename); |
1241 Ibyte *mswindows_canonicalize_filename (Ibyte *name); | |
771 | 1242 #define MSWINDOWS_NORMALIZE_FILENAME(name) \ |
867 | 1243 IBYTE_STRING_TO_ALLOCA (mswindows_canonicalize_filename (name), name) |
771 | 1244 |
1245 /* ------------------- Functions needed dynamic binding ------------------- */ | |
1246 | |
1247 typedef BOOL (WINAPI *pfSwitchToThread_t) (VOID); | |
1248 | |
1249 typedef NET_API_STATUS (NET_API_FUNCTION *pfNetUserEnum_t) | |
1250 (LPCWSTR, DWORD, DWORD, LPBYTE *, DWORD, LPDWORD, LPDWORD, LPDWORD); | |
1251 typedef NET_API_STATUS (NET_API_FUNCTION *pfNetApiBufferFree_t) (LPVOID); | |
1252 | |
1253 extern pfSwitchToThread_t xSwitchToThread; | |
1254 | |
1255 extern pfNetUserEnum_t xNetUserEnum; | |
1256 extern pfNetApiBufferFree_t xNetApiBufferFree; | |
1257 | |
1258 /* --------- Useful routines for manipulating memory-mapped files -------- */ | |
1259 | |
1260 typedef struct file_data | |
1261 { | |
867 | 1262 const Ibyte *name; |
771 | 1263 unsigned long size; |
1264 HANDLE file; | |
1265 HANDLE file_mapping; | |
1266 void *file_base; | |
1267 } file_data; | |
1268 | |
1269 #define OFFSET_TO_RVA(var,section) \ | |
1270 (section->VirtualAddress + \ | |
1271 ((DWORD)(var) - section->PointerToRawData)) | |
1272 | |
1273 #define RVA_TO_OFFSET(var,section) \ | |
1274 (section->PointerToRawData + \ | |
1275 ((DWORD)(var) - section->VirtualAddress)) | |
442 | 1276 |
771 | 1277 #define RVA_TO_PTR(var,section,filedata) \ |
1278 ((void *)(RVA_TO_OFFSET(var,section) + \ | |
1279 (char *)(filedata).file_base)) | |
1280 | |
867 | 1281 int open_input_file (file_data *p_file, const Ibyte *name); |
1282 int open_output_file (file_data *p_file, const Ibyte *name, | |
771 | 1283 unsigned long size); |
1284 void close_file_data (file_data *p_file); | |
1285 | |
1286 /* ------------------------- Heap related stuff ------------------------- */ | |
1287 | |
1288 #ifdef WIN32_NATIVE | |
442 | 1289 |
771 | 1290 #define get_reserved_heap_size() reserved_heap_size |
1291 #define get_committed_heap_size() (get_data_end () - get_data_start ()) | |
1292 #define get_heap_start() get_data_start () | |
1293 #define get_heap_end() get_data_end () | |
1294 #define get_page_size() sysinfo_cache.dwPageSize | |
1295 #define get_allocation_unit() sysinfo_cache.dwAllocationGranularity | |
1296 #define get_processor_type() sysinfo_cache.dwProcessorType | |
1297 #define get_nt_major_version() nt_major_version | |
1298 #define get_nt_minor_version() nt_minor_version | |
1299 | |
814 | 1300 unsigned char *get_data_start (void); |
1301 unsigned char *get_data_end (void); | |
771 | 1302 extern unsigned long data_region_size; |
1303 extern unsigned long reserved_heap_size; | |
1304 extern SYSTEM_INFO sysinfo_cache; | |
1305 extern int nt_major_version; | |
1306 extern int nt_minor_version; | |
1307 | |
1308 /* To prevent zero-initialized variables from being placed into the bss | |
1309 section, use non-zero values to represent an uninitialized state. */ | |
1310 #define UNINIT_PTR ((unsigned char*) 0xF0A0F0A0) | |
1311 #define UNINIT_LONG (0xF0A0F0A0L) | |
1312 | |
1313 /* Recreate the heap created during dumping. */ | |
814 | 1314 void recreate_heap (Extbyte *executable_path); |
771 | 1315 |
1316 /* Round the heap to this size. */ | |
814 | 1317 void round_heap (unsigned long size); |
771 | 1318 |
1319 /* Load in the dumped .bss section. */ | |
814 | 1320 void read_in_bss (Extbyte *name); |
771 | 1321 |
1322 /* Map in the dumped heap. */ | |
814 | 1323 void map_in_heap (Extbyte *name); |
771 | 1324 |
1325 /* Cache system info, e.g., the NT page size. */ | |
814 | 1326 void cache_system_info (void); |
771 | 1327 |
1328 /* Round ADDRESS up to be aligned with ALIGN. */ | |
814 | 1329 unsigned char *round_to_next (unsigned char *address, |
1330 unsigned long align); | |
771 | 1331 #endif /* WIN32_NATIVE */ |
1332 | |
1333 /* ------------------------- Misc prototypes ------------------------- */ | |
1334 | |
1335 #ifdef WIN32_NATIVE | |
1336 DECLARE_INLINE_HEADER (int strcasecmp (const char *a, const char *b)) | |
1337 { | |
867 | 1338 return qxestrcasecmp ((const Ibyte *) a, (const Ibyte *) b); |
771 | 1339 } |
1340 #endif /* WIN32_NATIVE */ | |
442 | 1341 |
771 | 1342 /* in nt.c */ |
867 | 1343 int mswindows_access (const Ibyte *path, int mode); |
3025 | 1344 int mswindows_link (const Ibyte *old, const Ibyte *new_); |
867 | 1345 int mswindows_rename (const Ibyte *oldname, const Ibyte *newname); |
1346 int mswindows_unlink (const Ibyte *path); | |
1347 int mswindows_stat (const Ibyte *path, struct stat *buf); | |
771 | 1348 int mswindows_fstat (int desc, struct stat *buf); |
1349 time_t mswindows_convert_time (FILETIME ft); | |
1204 | 1350 int mswindows_is_executable (const Ibyte *filename); |
1351 void mswindows_executable_type (const Ibyte *filename, int *is_dos_app, | |
1352 int *is_cygnus_app); | |
867 | 1353 Ibyte *mswindows_getdcwd (int drivelet); |
771 | 1354 |
872 | 1355 /* in process-nt.c */ |
771 | 1356 extern int mswindows_compare_env (const void *strp1, const void *strp2); |
1357 | |
1358 /* in win32.c */ | |
814 | 1359 Extbyte *mswindows_get_module_file_name (void); |
4932 | 1360 void mswindows_output_last_error (const Ascbyte *frob); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
1361 DECLARE_DOESNT_RETURN (mswindows_report_process_error (const Ascbyte *reason, |
771 | 1362 Lisp_Object data, |
1363 int errnum)); | |
1364 Lisp_Object mswindows_lisp_error (int errnum); | |
2526 | 1365 Ibyte *mswindows_read_link (const Ibyte *fname); |
771 | 1366 |
872 | 1367 /* in intl-win32.c */ |
1368 extern Lisp_Object Qmswindows_tstr, Qmswindows_unicode; | |
1369 extern Lisp_Object Qmswindows_multibyte, Qmswindows_multibyte_to_unicode; | |
1370 | |
442 | 1371 #endif /* INCLUDED_syswindows_h_ */ |