[win32] Support case-tolerant %ENV
[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 __GNUC__
13 typedef long long __int64;
14 #define Win32_Winsock
15 /* GCC does not do __declspec() - render it a nop 
16  * and turn on options to avoid importing data 
17  */
18 #define __declspec(x)
19 #define PERL_GLOBAL_STRUCT
20 #define MULTIPLICITY
21 #ifndef TLS_OUT_OF_INDEXES
22 #define TLS_OUT_OF_INDEXES (DWORD)0xFFFFFFFF
23 #endif
24 #endif
25
26 /* Define DllExport akin to perl's EXT, 
27  * If we are in the DLL or mimicing the DLL for Win95 work round
28  * then Export the symbol, 
29  * otherwise import it.
30  */
31
32 #if defined(PERLDLL) || defined(WIN95FIX)
33 #define DllExport __declspec(dllexport)
34 #else 
35 #define DllExport __declspec(dllimport)
36 #endif
37
38 #define  WIN32_LEAN_AND_MEAN
39 #include <windows.h>
40
41 #ifdef   WIN32_LEAN_AND_MEAN            /* C file is NOT a Perl5 original. */
42 #define  CONTEXT        PERL_CONTEXT    /* Avoid conflict of CONTEXT defs. */
43 #define  index          strchr          /* Why 'index'? */
44 #endif /*WIN32_LEAN_AND_MEAN */
45
46 #include <dirent.h>
47 #include <io.h>
48 #include <process.h>
49 #include <stdio.h>
50 #include <direct.h>
51 #include <stdlib.h>
52 #ifndef EXT
53 #include "EXTERN.h"
54 #endif
55
56 struct tms {
57         long    tms_utime;
58         long    tms_stime;
59         long    tms_cutime;
60         long    tms_cstime;
61 };
62
63 #ifndef START_EXTERN_C
64 #ifdef __cplusplus
65 #  define START_EXTERN_C extern "C" {
66 #  define END_EXTERN_C }
67 #  define EXTERN_C extern "C"
68 #else
69 #  define START_EXTERN_C 
70 #  define END_EXTERN_C 
71 #  define EXTERN_C
72 #endif
73 #endif
74
75 #define  STANDARD_C     1
76 #define  DOSISH         1               /* no escaping our roots */
77 #define  OP_BINARY      O_BINARY        /* mistake in in pp_sys.c? */
78
79 /* Define USE_SOCKETS_AS_HANDLES to enable emulation of windows sockets as
80  * real filehandles. XXX Should always be defined (the other version is untested) */
81 #define USE_SOCKETS_AS_HANDLES
82
83 /* if USE_WIN32_RTL_ENV is not defined, Perl uses direct Win32 calls
84  * to read the environment, bypassing the runtime's (usually broken)
85  * facilities for accessing the same.  See note in util.c/my_setenv(). */
86 /*#define USE_WIN32_RTL_ENV */
87
88 /* Define USE_FIXED_OSFHANDLE to fix VC's _open_osfhandle() on W95.
89  * Can only enable it if not using the DLL CRT (it doesn't expose internals) */
90 #if defined(_MSC_VER) && !defined(_DLL) && defined(_M_IX86)
91 #define USE_FIXED_OSFHANDLE
92 #endif
93
94 #define ENV_IS_CASELESS
95
96 #ifndef VER_PLATFORM_WIN32_WINDOWS      /* VC-2.0 headers dont have this */
97 #define VER_PLATFORM_WIN32_WINDOWS      1
98 #endif
99
100 /* Compiler-specific stuff. */
101
102 #ifdef __BORLANDC__             /* Borland C++ */
103
104 #define _access access
105 #define _chdir chdir
106 #include <sys/types.h>
107
108 #ifndef DllMain
109 #define DllMain DllEntryPoint
110 #endif
111
112 #pragma warn -ccc
113 #pragma warn -rch
114 #pragma warn -sig
115 #pragma warn -pia
116 #pragma warn -par
117 #pragma warn -aus
118 #pragma warn -use
119 #pragma warn -csu
120 #pragma warn -pro
121
122 #endif
123
124 #ifdef _MSC_VER                 /* Microsoft Visual C++ */
125
126 typedef long            uid_t;
127 typedef long            gid_t;
128 #pragma  warning(disable: 4018 4035 4101 4102 4244 4245 4761)
129
130 #endif /* _MSC_VER */
131
132 #ifdef __MINGW32__              /* Minimal Gnu-Win32 */
133
134 typedef long            uid_t;
135 typedef long            gid_t;
136
137 #endif /* __MINGW32__ */
138
139 /* compatibility stuff for other compilers goes here */
140
141
142 START_EXTERN_C
143
144 /* For UNIX compatibility. */
145
146 extern  uid_t   getuid(void);
147 extern  gid_t   getgid(void);
148 extern  uid_t   geteuid(void);
149 extern  gid_t   getegid(void);
150 extern  int     setuid(uid_t uid);
151 extern  int     setgid(gid_t gid);
152 extern  int     kill(int pid, int sig);
153 extern  void    *sbrk(int need);
154 extern  char *  getlogin(void);
155
156 #undef   Stat
157 #define  Stat           win32_stat
158
159 #undef   init_os_extras
160 #define  init_os_extras Perl_init_os_extras
161
162 DllExport void          Perl_win32_init(int *argcp, char ***argvp);
163 DllExport void          Perl_init_os_extras(void);
164 DllExport void          win32_str_os_error(struct sv *s, DWORD err);
165
166 #ifndef USE_SOCKETS_AS_HANDLES
167 extern FILE *           my_fdopen(int, char *);
168 #endif
169 extern int              my_fclose(FILE *);
170 extern int              do_aspawn(void *really, void **mark, void **sp);
171 extern int              do_spawn(char *cmd);
172 extern int              do_spawn_nowait(char *cmd);
173 extern char             do_exec(char *cmd);
174 extern char *           win32_perllib_path(char *sfx,...);
175 extern int              IsWin95(void);
176 extern int              IsWinNT(void);
177
178 extern char *           staticlinkmodules[];
179
180 END_EXTERN_C
181
182 typedef  char *         caddr_t;        /* In malloc.c (core address). */
183
184 /*
185  * handle socket stuff, assuming socket is always available
186  */
187 #include <sys/socket.h>
188 #include <netdb.h>
189
190 #ifdef MYMALLOC
191 #define EMBEDMYMALLOC   /**/
192 /* #define USE_PERL_SBRK        /**/
193 /* #define PERL_SBRK_VIA_MALLOC /**/
194 #endif
195
196 #if defined(PERLDLL) && !defined(PERL_CORE)
197 #define PERL_CORE
198 #endif
199
200 #ifdef USE_BINMODE_SCRIPTS
201 #define PERL_SCRIPT_MODE "rb"
202 EXT void win32_strip_return(struct sv *sv);
203 #else
204 #define PERL_SCRIPT_MODE "r"
205 #define win32_strip_return(sv) NOOP
206 #endif
207
208 /* 
209  * Now Win32 specific per-thread data stuff 
210  */
211
212 #ifdef USE_THREADS
213 #  ifndef USE_DECLSPEC_THREAD
214 #    define HAVE_THREAD_INTERN
215
216 struct thread_intern {
217     /* XXX can probably use one buffer instead of several */
218     char                Wstrerror_buffer[512];
219     struct servent      Wservent;
220     char                Wgetlogin_buffer[128];
221 #    ifdef HAVE_DES_FCRYPT
222     char                Wcrypt_buffer[30];
223 #    endif
224 #    ifdef USE_RTL_THREAD_API
225     void *              retv;   /* slot for thread return value */
226 #    endif
227 };
228 #  endif /* !USE_DECLSPEC_THREAD */
229 #endif /* USE_THREADS */
230
231 #endif /* _INC_WIN32_PERL5 */