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