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