This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
7d107c66ed4ff5c3c8f17b1ecdcd39fff80f2857
[perl5.git] / wince / win32.h
1 /* Time-stamp: <01/08/01 20:59:54 keuchel@w2k> */
2
3 /* WIN32.H
4  *
5  * (c) 1995 Microsoft Corporation. All rights reserved. 
6  *              Developed by hip communications inc., http://info.hip.com/info/
7  *
8  *    You may distribute under the terms of either the GNU General Public
9  *    License or the Artistic License, as specified in the README file.
10  */
11
12 #ifndef  _INC_WIN32_PERL5
13 #define  _INC_WIN32_PERL5
14
15 #ifndef _WIN32_WINNT
16 #  define _WIN32_WINNT 0x0400     /* needed for TryEnterCriticalSection() etc. */
17 #endif
18
19 #if defined(PERL_IMPLICIT_SYS)
20 #  define DYNAMIC_ENV_FETCH
21 #  define ENV_HV_NAME "___ENV_HV_NAME___"
22 #  define HAS_GETENV_LEN
23 #  define prime_env_iter()
24 #  define WIN32IO_IS_STDIO              /* don't pull in custom stdio layer */
25 #  define WIN32SCK_IS_STDSCK            /* don't pull in custom wsock layer */
26 #  ifdef PERL_GLOBAL_STRUCT
27 #    error PERL_GLOBAL_STRUCT cannot be defined with PERL_IMPLICIT_SYS
28 #  endif
29 #  define win32_get_privlib PerlEnv_lib_path
30 #  define win32_get_sitelib PerlEnv_sitelib_path
31 #  define win32_get_vendorlib PerlEnv_vendorlib_path
32 #endif
33
34 #ifdef __GNUC__
35 #  ifndef __int64               /* some versions seem to #define it already */
36 #    define __int64 long long
37 #  endif
38 #  define Win32_Winsock
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 /* now even GCC supports __declspec() */
48
49 #if defined(PERLDLL) || defined(WIN95FIX)
50 #define DllExport
51 /*#define DllExport __declspec(dllexport)*/     /* noises with VC5+sp3 */
52 #else 
53 #define DllExport __declspec(dllimport)
54 #endif
55
56 #define  WIN32_LEAN_AND_MEAN
57 #include <windows.h>
58
59 #ifdef   WIN32_LEAN_AND_MEAN            /* C file is NOT a Perl5 original. */
60 #define  CONTEXT        PERL_CONTEXT    /* Avoid conflict of CONTEXT defs. */
61 #endif /*WIN32_LEAN_AND_MEAN */
62
63 #ifndef TLS_OUT_OF_INDEXES
64 #define TLS_OUT_OF_INDEXES (DWORD)0xFFFFFFFF
65 #endif
66
67 #include <dirent.h>
68 #ifndef UNDER_CE
69 #include <io.h>
70 #include <process.h>
71 #include <direct.h>
72 #include <fcntl.h>
73 #endif
74 #include <stdio.h>
75 #include <stdlib.h>
76 #ifndef EXT
77 #include "EXTERN.h"
78 #endif
79
80 struct tms {
81         long    tms_utime;
82         long    tms_stime;
83         long    tms_cutime;
84         long    tms_cstime;
85 };
86
87 #ifndef SYS_NMLN
88 #define SYS_NMLN        257
89 #endif
90
91 struct utsname {
92     char sysname[SYS_NMLN];
93     char nodename[SYS_NMLN];
94     char release[SYS_NMLN];
95     char version[SYS_NMLN];
96     char machine[SYS_NMLN];
97 };
98
99 #ifndef START_EXTERN_C
100 #undef EXTERN_C
101 #ifdef __cplusplus
102 #  define START_EXTERN_C extern "C" {
103 #  define END_EXTERN_C }
104 #  define EXTERN_C extern "C"
105 #else
106 #  define START_EXTERN_C 
107 #  define END_EXTERN_C 
108 #  define EXTERN_C
109 #endif
110 #endif
111
112 #define  STANDARD_C     1
113 #define  DOSISH         1               /* no escaping our roots */
114 #define  OP_BINARY      O_BINARY        /* mistake in in pp_sys.c? */
115
116 /* Define USE_SOCKETS_AS_HANDLES to enable emulation of windows sockets as
117  * real filehandles. XXX Should always be defined (the other version is untested) */
118
119 /* #define USE_SOCKETS_AS_HANDLES */
120
121 /* read() and write() aren't transparent for socket handles */
122 #define PERL_SOCK_SYSREAD_IS_RECV
123 #define PERL_SOCK_SYSWRITE_IS_SEND
124
125 #define PERL_NO_FORCE_LINK              /* no need for PL_force_link_funcs */
126
127 /* if USE_WIN32_RTL_ENV is not defined, Perl uses direct Win32 calls
128  * to read the environment, bypassing the runtime's (usually broken)
129  * facilities for accessing the same.  See note in util.c/my_setenv(). */
130 /*#define USE_WIN32_RTL_ENV */
131
132 /* Define USE_FIXED_OSFHANDLE to fix MSVCRT's _open_osfhandle() on W95.
133    It now uses some black magic to work seamlessly with the DLL CRT and
134    works with MSVC++ 4.0+ or GCC/Mingw32
135         -- BKS 1-24-2000 */
136 #if (defined(_M_IX86) && _MSC_VER >= 1000) || defined(__MINGW32__)
137 #define USE_FIXED_OSFHANDLE
138 #endif
139
140 #define ENV_IS_CASELESS
141
142 #ifndef VER_PLATFORM_WIN32_WINDOWS      /* VC-2.0 headers don't have this */
143 #define VER_PLATFORM_WIN32_WINDOWS      1
144 #endif
145
146 #ifndef FILE_SHARE_DELETE               /* VC-4.0 headers don't have this */
147 #define FILE_SHARE_DELETE               0x00000004
148 #endif
149
150 /* access() mode bits */
151 #ifndef R_OK
152 #  define       R_OK    4
153 #  define       W_OK    2
154 #  define       X_OK    1
155 #  define       F_OK    0
156 #endif
157
158 #define PERL_GET_CONTEXT_DEFINED
159
160 /* Compiler-specific stuff. */
161
162 #ifdef __BORLANDC__             /* Borland C++ */
163
164 #define _access access
165 #define _chdir chdir
166 #define _getpid getpid
167 #define wcsicmp _wcsicmp
168 #include <sys/types.h>
169
170 #ifndef DllMain
171 #define DllMain DllEntryPoint
172 #endif
173
174 #pragma warn -ccc       /* "condition is always true/false" */
175 #pragma warn -rch       /* "unreachable code" */
176 #pragma warn -sig       /* "conversion may lose significant digits" */
177 #pragma warn -pia       /* "possibly incorrect assignment" */
178 #pragma warn -par       /* "parameter 'foo' is never used" */
179 #pragma warn -aus       /* "'foo' is assigned a value that is never used" */
180 #pragma warn -use       /* "'foo' is declared but never used" */
181 #pragma warn -csu       /* "comparing signed and unsigned values" */
182 #pragma warn -pro       /* "call to function with no prototype" */
183 #pragma warn -stu       /* "undefined structure 'foo'" */
184
185 /* Borland C thinks that a pointer to a member variable is 12 bytes in size. */
186 #define PERL_MEMBER_PTR_SIZE    12
187
188 #endif
189
190 #ifdef _MSC_VER                 /* Microsoft Visual C++ */
191
192 #ifndef _MODE_T_DEFINED_
193 typedef unsigned long mode_t;
194 #define _MODE_T_DEFINED_
195 #endif
196
197 #pragma  warning(disable: 4018 4035 4101 4102 4244 4245 4761)
198
199 /* Visual C thinks that a pointer to a member variable is 16 bytes in size. */
200 #define PERL_MEMBER_PTR_SIZE    16
201
202 #endif /* _MSC_VER */
203
204 #ifdef __MINGW32__              /* Minimal Gnu-Win32 */
205
206 typedef long            uid_t;
207 typedef long            gid_t;
208 #ifndef _environ
209 #define _environ        environ
210 #endif
211 #define flushall        _flushall
212 #define fcloseall       _fcloseall
213
214 #ifndef _O_NOINHERIT
215 #  define _O_NOINHERIT  0x0080
216 #  ifndef _NO_OLDNAMES
217 #    define O_NOINHERIT _O_NOINHERIT
218 #  endif
219 #endif
220
221 #endif /* __MINGW32__ */
222
223 /* both GCC/Mingw32 and MSVC++ 4.0 are missing this, so we put it here */
224 #ifndef CP_UTF8
225 #  define CP_UTF8       65001
226 #endif
227
228 /* compatibility stuff for other compilers goes here */
229
230 #ifndef _INTPTR_T_DEFINED
231 typedef int             intptr_t;
232 #  define _INTPTR_T_DEFINED
233 #endif
234
235 #ifndef _UINTPTR_T_DEFINED
236 typedef unsigned int    uintptr_t;
237 #  define _UINTPTR_T_DEFINED
238 #endif
239
240 START_EXTERN_C
241
242 #undef   Stat
243 #define  Stat           win32_stat
244
245 #undef   init_os_extras
246 #define  init_os_extras Perl_init_os_extras
247
248 DllExport void          Perl_win32_init(int *argcp, char ***argvp);
249 DllExport void          Perl_init_os_extras();
250 DllExport void          win32_str_os_error(void *sv, DWORD err);
251 DllExport int           RunPerl(int argc, char **argv, char **env);
252
253 typedef struct {
254     HANDLE      childStdIn;
255     HANDLE      childStdOut;
256     HANDLE      childStdErr;
257     /*
258      * the following correspond to the fields of the same name
259      * in the STARTUPINFO structure. Embedders can use these to
260      * control the spawning process' look.
261      * Example - to hide the window of the spawned process:
262      *    dwFlags = STARTF_USESHOWWINDOW;
263      *    wShowWindow = SW_HIDE;
264      */
265     DWORD       dwFlags;
266     DWORD       dwX; 
267     DWORD       dwY; 
268     DWORD       dwXSize; 
269     DWORD       dwYSize; 
270     DWORD       dwXCountChars; 
271     DWORD       dwYCountChars; 
272     DWORD       dwFillAttribute;
273     WORD        wShowWindow; 
274 } child_IO_table;
275
276 DllExport void          win32_get_child_IO(child_IO_table* ptr);
277
278 #ifndef USE_SOCKETS_AS_HANDLES
279 extern FILE *           my_fdopen(int, char *);
280 #endif
281
282 extern int              my_fclose(FILE *);
283 extern int              do_aspawn(void *really, void **mark, void **sp);
284 extern int              do_spawn(char *cmd);
285 extern int              do_spawn_nowait(char *cmd);
286 extern char *           win32_get_privlib(const char *pl);
287 extern char *           win32_get_sitelib(const char *pl);
288 extern char *           win32_get_vendorlib(const char *pl);
289 extern int              IsWin95(void);
290 extern int              IsWinNT(void);
291 extern void             win32_argv2utf8(int argc, char** argv);
292
293 #ifdef PERL_IMPLICIT_SYS
294 extern void             win32_delete_internal_host(void *h);
295 #endif
296
297 extern char *           staticlinkmodules[];
298
299 END_EXTERN_C
300
301 /*
302  * handle socket stuff, assuming socket is always available
303  */
304
305 #include <sys/socket.h>
306 #include <netdb.h>
307
308 #ifdef MYMALLOC
309 #define EMBEDMYMALLOC   /**/
310 /* #define USE_PERL_SBRK        /**/
311 /* #define PERL_SBRK_VIA_MALLOC /**/
312 #endif
313
314 #if defined(PERLDLL) && !defined(PERL_CORE)
315 #define PERL_CORE
316 #endif
317
318 #ifdef PERL_TEXTMODE_SCRIPTS
319 #  define PERL_SCRIPT_MODE              "r"
320 #else
321 #  define PERL_SCRIPT_MODE              "rb"
322 #endif
323
324 /* 
325  * Now Win32 specific per-thread data stuff 
326  */
327
328 struct thread_intern {
329     /* XXX can probably use one buffer instead of several */
330     char                Wstrerror_buffer[512];
331     struct servent      Wservent;
332     char                Wgetlogin_buffer[128];
333 #    ifdef USE_SOCKETS_AS_HANDLES
334     int                 Winit_socktype;
335 #    endif
336 #    ifdef HAVE_DES_FCRYPT
337     char                Wcrypt_buffer[30];
338 #    endif
339 #    ifdef USE_RTL_THREAD_API
340     void *              retv;   /* slot for thread return value */
341 #    endif
342 };
343
344 #define HAVE_INTERP_INTERN
345 typedef struct {
346     long        num;
347     DWORD       pids[MAXIMUM_WAIT_OBJECTS];
348     HANDLE      handles[MAXIMUM_WAIT_OBJECTS];
349 } child_tab;
350
351 struct interp_intern {
352     char *      perlshell_tokens;
353     char **     perlshell_vec;
354     long        perlshell_items;
355     struct av * fdpid;
356     child_tab * children;
357 #ifdef USE_ITHREADS
358     DWORD       pseudo_id;
359     child_tab * pseudo_children;
360 #endif
361     void *      internal_host;
362     struct thread_intern        thr_intern;
363 };
364
365
366 #define w32_perlshell_tokens    (PL_sys_intern.perlshell_tokens)
367 #define w32_perlshell_vec       (PL_sys_intern.perlshell_vec)
368 #define w32_perlshell_items     (PL_sys_intern.perlshell_items)
369 #define w32_fdpid               (PL_sys_intern.fdpid)
370 #define w32_children            (PL_sys_intern.children)
371 #define w32_num_children        (w32_children->num)
372 #define w32_child_pids          (w32_children->pids)
373 #define w32_child_handles       (w32_children->handles)
374 #define w32_pseudo_id           (PL_sys_intern.pseudo_id)
375 #define w32_pseudo_children     (PL_sys_intern.pseudo_children)
376 #define w32_num_pseudo_children         (w32_pseudo_children->num)
377 #define w32_pseudo_child_pids           (w32_pseudo_children->pids)
378 #define w32_pseudo_child_handles        (w32_pseudo_children->handles)
379 #define w32_internal_host               (PL_sys_intern.internal_host)
380 #define w32_strerror_buffer     (PL_sys_intern.thr_intern.Wstrerror_buffer)
381 #define w32_getlogin_buffer     (PL_sys_intern.thr_intern.Wgetlogin_buffer)
382 #define w32_crypt_buffer        (PL_sys_intern.thr_intern.Wcrypt_buffer)
383 #define w32_servent             (PL_sys_intern.thr_intern.Wservent)
384 #define w32_init_socktype       (PL_sys_intern.thr_intern.Winit_socktype)
385
386 /* UNICODE<>ANSI translation helpers */
387 /* Use CP_ACP when mode is ANSI */
388 /* Use CP_UTF8 when mode is UTF8 */
389
390 #define A2WHELPER_LEN(lpa, alen, lpw, nBytes)\
391     (lpw[0] = 0, MultiByteToWideChar((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
392                                     lpa, alen, lpw, (nBytes/sizeof(WCHAR))))
393 #define A2WHELPER(lpa, lpw, nBytes)     A2WHELPER_LEN(lpa, -1, lpw, nBytes)
394
395 #define W2AHELPER_LEN(lpw, wlen, lpa, nChars)\
396     (lpa[0] = '\0', WideCharToMultiByte((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
397                                        lpw, wlen, (LPSTR)lpa, nChars,NULL,NULL))
398 #define W2AHELPER(lpw, lpa, nChars)     W2AHELPER_LEN(lpw, -1, lpa, nChars)
399
400 #define USING_WIDE() (PL_widesyscalls && PerlEnv_os_id() == VER_PLATFORM_WIN32_NT)
401
402 #ifdef USE_ITHREADS
403 #  define PERL_WAIT_FOR_CHILDREN \
404     STMT_START {                                                        \
405         if (w32_pseudo_children && w32_num_pseudo_children) {           \
406             long children = w32_num_pseudo_children;                    \
407             WaitForMultipleObjects(children,                            \
408                                    w32_pseudo_child_handles,            \
409                                    TRUE, INFINITE);                     \
410             while (children)                                            \
411                 CloseHandle(w32_pseudo_child_handles[--children]);      \
412         }                                                               \
413     } STMT_END
414 #endif
415
416 /*
417  * This provides a layer of functions and macros to ensure extensions will
418  * get to use the same RTL functions as the core.
419  */
420 #include "win32iop.h"
421
422 #endif /* _INC_WIN32_PERL5 */
423