[asperl] integrate mainline changes
[p5sagit/p5-mst-13.2.git] / win32 / win32.h
1 /* WIN32.H
2  *
3  * (c) 1995 Microsoft Corporation. All rights reserved. 
4  *              Developed by hip communications inc., http://info.hip.com/info/
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  */
9 #ifndef  _INC_WIN32_PERL5
10 #define  _INC_WIN32_PERL5
11
12 #ifdef PERL_OBJECT
13 #define ENV_HV_NAME "ENV_HV_NAME"
14 #define DYNAMIC_ENV_FETCH
15 #define prime_env_iter()
16 #ifdef PERL_GLOBAL_STRUCT
17 #error PERL_GLOBAL_STRUCT cannot be defined with PERL_OBJECT
18 #endif
19 #define win32_get_stdlib PerlEnv_lib_path
20 #define win32_get_sitelib PerlEnv_sitelib_path
21 #endif
22
23 #ifdef __GNUC__
24 typedef long long __int64;
25 #define Win32_Winsock
26 #  ifdef __cplusplus
27 #undef __attribute__            /* seems broken in 2.8.0 */
28 #define __attribute__(p)
29 #  endif
30 /* GCC does not do __declspec() - render it a nop 
31  * and turn on options to avoid importing data 
32  */
33 #define __declspec(x)
34 #define PERL_GLOBAL_STRUCT
35 #define MULTIPLICITY
36 #ifndef TLS_OUT_OF_INDEXES
37 #define TLS_OUT_OF_INDEXES (DWORD)0xFFFFFFFF
38 #endif
39 #endif
40
41 /* Define DllExport akin to perl's EXT, 
42  * If we are in the DLL or mimicing the DLL for Win95 work round
43  * then Export the symbol, 
44  * otherwise import it.
45  */
46
47 #if defined(PERL_OBJECT)
48 #define DllExport
49 #else
50 #if defined(PERLDLL) || defined(WIN95FIX)
51 #define DllExport __declspec(dllexport)
52 #else 
53 #define DllExport __declspec(dllimport)
54 #endif
55 #endif
56
57 #define  WIN32_LEAN_AND_MEAN
58 #include <windows.h>
59
60 #ifdef   WIN32_LEAN_AND_MEAN            /* C file is NOT a Perl5 original. */
61 #define  CONTEXT        PERL_CONTEXT    /* Avoid conflict of CONTEXT defs. */
62 #define  index          strchr          /* Why 'index'? */
63 #endif /*WIN32_LEAN_AND_MEAN */
64
65 #include <dirent.h>
66 #include <io.h>
67 #include <process.h>
68 #include <stdio.h>
69 #include <direct.h>
70 #include <stdlib.h>
71 #ifndef EXT
72 #include "EXTERN.h"
73 #endif
74
75 struct tms {
76         long    tms_utime;
77         long    tms_stime;
78         long    tms_cutime;
79         long    tms_cstime;
80 };
81
82 #ifndef START_EXTERN_C
83 #ifdef __cplusplus
84 #  define START_EXTERN_C extern "C" {
85 #  define END_EXTERN_C }
86 #  define EXTERN_C extern "C"
87 #else
88 #  define START_EXTERN_C 
89 #  define END_EXTERN_C 
90 #  define EXTERN_C
91 #endif
92 #endif
93
94 #define  STANDARD_C     1
95 #define  DOSISH         1               /* no escaping our roots */
96 #define  OP_BINARY      O_BINARY        /* mistake in in pp_sys.c? */
97
98 /* Define USE_SOCKETS_AS_HANDLES to enable emulation of windows sockets as
99  * real filehandles. XXX Should always be defined (the other version is untested) */
100 #define USE_SOCKETS_AS_HANDLES
101
102 /* if USE_WIN32_RTL_ENV is not defined, Perl uses direct Win32 calls
103  * to read the environment, bypassing the runtime's (usually broken)
104  * facilities for accessing the same.  See note in util.c/my_setenv(). */
105 /*#define USE_WIN32_RTL_ENV */
106
107 /* Define USE_FIXED_OSFHANDLE to fix VC's _open_osfhandle() on W95.
108  * Can only enable it if not using the DLL CRT (it doesn't expose internals) */
109 #if defined(_MSC_VER) && !defined(_DLL) && defined(_M_IX86)
110 #define USE_FIXED_OSFHANDLE
111 #endif
112
113 #define ENV_IS_CASELESS
114
115 #ifndef VER_PLATFORM_WIN32_WINDOWS      /* VC-2.0 headers dont have this */
116 #define VER_PLATFORM_WIN32_WINDOWS      1
117 #endif
118
119 /* Compiler-specific stuff. */
120
121 #ifdef __BORLANDC__             /* Borland C++ */
122
123 #define _access access
124 #define _chdir chdir
125 #include <sys/types.h>
126
127 #ifndef DllMain
128 #define DllMain DllEntryPoint
129 #endif
130
131 #pragma warn -ccc       /* "condition is always true/false" */
132 #pragma warn -rch       /* "unreachable code" */
133 #pragma warn -sig       /* "conversion may lose significant digits" */
134 #pragma warn -pia       /* "possibly incorrect assignment" */
135 #pragma warn -par       /* "parameter 'foo' is never used" */
136 #pragma warn -aus       /* "'foo' is assigned a value that is never used" */
137 #pragma warn -use       /* "'foo' is declared but never used" */
138 #pragma warn -csu       /* "comparing signed and unsigned values" */
139 #pragma warn -pro       /* "call to function with no prototype" */
140
141 /* Borland is picky about a bare member function name used as its ptr */
142 #ifdef PERL_OBJECT
143 #define FUNC_NAME_TO_PTR(name)  &(name)
144 #endif
145
146 #endif
147
148 #ifdef _MSC_VER                 /* Microsoft Visual C++ */
149
150 typedef long            uid_t;
151 typedef long            gid_t;
152 #pragma  warning(disable: 4018 4035 4101 4102 4244 4245 4761)
153
154 #endif /* _MSC_VER */
155
156 #ifdef __MINGW32__              /* Minimal Gnu-Win32 */
157
158 typedef long            uid_t;
159 typedef long            gid_t;
160 #define _environ        environ
161 #define flushall        _flushall
162 #define fcloseall       _fcloseall
163
164 #ifndef _O_NOINHERIT
165 #  define _O_NOINHERIT  0x0080
166 #  ifndef _NO_OLDNAMES
167 #    define O_NOINHERIT _O_NOINHERIT
168 #  endif
169 #endif
170
171 #ifndef _O_NOINHERIT
172 #  define _O_NOINHERIT  0x0080
173 #  ifndef _NO_OLDNAMES
174 #    define O_NOINHERIT _O_NOINHERIT
175 #  endif
176 #endif
177
178 #endif /* __MINGW32__ */
179
180 /* compatibility stuff for other compilers goes here */
181
182
183 START_EXTERN_C
184
185 /* For UNIX compatibility. */
186
187 extern  uid_t   getuid(void);
188 extern  gid_t   getgid(void);
189 extern  uid_t   geteuid(void);
190 extern  gid_t   getegid(void);
191 extern  int     setuid(uid_t uid);
192 extern  int     setgid(gid_t gid);
193 extern  int     kill(int pid, int sig);
194 extern  void    *sbrk(int need);
195 extern  char *  getlogin(void);
196 extern  int     chown(const char *p, uid_t o, gid_t g);
197
198 #undef   Stat
199 #define  Stat           win32_stat
200
201 #undef   init_os_extras
202 #define  init_os_extras Perl_init_os_extras
203
204 DllExport void          Perl_win32_init(int *argcp, char ***argvp);
205 DllExport void          Perl_init_os_extras(void);
206 DllExport void          win32_str_os_error(void *sv, DWORD err);
207
208 #ifndef USE_SOCKETS_AS_HANDLES
209 extern FILE *           my_fdopen(int, char *);
210 #endif
211 extern int              my_fclose(FILE *);
212 extern int              do_aspawn(void *really, void **mark, void **sp);
213 extern int              do_spawn(char *cmd);
214 extern int              do_spawn_nowait(char *cmd);
215 extern char             do_exec(char *cmd);
216 extern char *           win32_get_stdlib(char *pl);
217 extern char *           win32_get_sitelib(char *pl);
218 extern int              IsWin95(void);
219 extern int              IsWinNT(void);
220
221 extern char *           staticlinkmodules[];
222
223 END_EXTERN_C
224
225 typedef  char *         caddr_t;        /* In malloc.c (core address). */
226
227 /*
228  * handle socket stuff, assuming socket is always available
229  */
230 #include <sys/socket.h>
231 #include <netdb.h>
232
233 #ifdef MYMALLOC
234 #define EMBEDMYMALLOC   /**/
235 /* #define USE_PERL_SBRK        /**/
236 /* #define PERL_SBRK_VIA_MALLOC /**/
237 #endif
238
239 #if defined(PERLDLL) && !defined(PERL_CORE)
240 #define PERL_CORE
241 #endif
242
243 #ifdef USE_BINMODE_SCRIPTS
244 #define PERL_SCRIPT_MODE "rb"
245 EXT void win32_strip_return(struct sv *sv);
246 #else
247 #define PERL_SCRIPT_MODE "r"
248 #define win32_strip_return(sv) NOOP
249 #endif
250
251 /* 
252  * Now Win32 specific per-thread data stuff 
253  */
254
255 #ifdef USE_THREADS
256 #  ifndef USE_DECLSPEC_THREAD
257 #    define HAVE_THREAD_INTERN
258
259 struct thread_intern {
260     /* XXX can probably use one buffer instead of several */
261     char                Wstrerror_buffer[512];
262     struct servent      Wservent;
263     char                Wgetlogin_buffer[128];
264 #    ifdef USE_SOCKETS_AS_HANDLES
265     int                 Winit_socktype;
266 #    endif
267 #    ifdef HAVE_DES_FCRYPT
268     char                Wcrypt_buffer[30];
269 #    endif
270 #    ifdef USE_RTL_THREAD_API
271     void *              retv;   /* slot for thread return value */
272 #    endif
273 };
274 #  endif /* !USE_DECLSPEC_THREAD */
275 #endif /* USE_THREADS */
276
277 #endif /* _INC_WIN32_PERL5 */