This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
WinCE several touches
[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 #ifdef USE_5005THREADS
345 #  ifndef USE_DECLSPEC_THREAD
346 #    define HAVE_THREAD_INTERN
347 #  endif /* !USE_DECLSPEC_THREAD */
348 #endif /* USE_5005THREADS */
349
350 #define HAVE_INTERP_INTERN
351 typedef struct {
352     long        num;
353     DWORD       pids[MAXIMUM_WAIT_OBJECTS];
354     HANDLE      handles[MAXIMUM_WAIT_OBJECTS];
355 } child_tab;
356
357 struct interp_intern {
358     char *      perlshell_tokens;
359     char **     perlshell_vec;
360     long        perlshell_items;
361     struct av * fdpid;
362     child_tab * children;
363 #ifdef USE_ITHREADS
364     DWORD       pseudo_id;
365     child_tab * pseudo_children;
366 #endif
367     void *      internal_host;
368 #ifndef USE_5005THREADS
369     struct thread_intern        thr_intern;
370 #endif
371 };
372
373
374 #define w32_perlshell_tokens    (PL_sys_intern.perlshell_tokens)
375 #define w32_perlshell_vec       (PL_sys_intern.perlshell_vec)
376 #define w32_perlshell_items     (PL_sys_intern.perlshell_items)
377 #define w32_fdpid               (PL_sys_intern.fdpid)
378 #define w32_children            (PL_sys_intern.children)
379 #define w32_num_children        (w32_children->num)
380 #define w32_child_pids          (w32_children->pids)
381 #define w32_child_handles       (w32_children->handles)
382 #define w32_pseudo_id           (PL_sys_intern.pseudo_id)
383 #define w32_pseudo_children     (PL_sys_intern.pseudo_children)
384 #define w32_num_pseudo_children         (w32_pseudo_children->num)
385 #define w32_pseudo_child_pids           (w32_pseudo_children->pids)
386 #define w32_pseudo_child_handles        (w32_pseudo_children->handles)
387 #define w32_internal_host               (PL_sys_intern.internal_host)
388 #ifdef USE_5005THREADS
389 #  define w32_strerror_buffer   (thr->i.Wstrerror_buffer)
390 #  define w32_getlogin_buffer   (thr->i.Wgetlogin_buffer)
391 #  define w32_crypt_buffer      (thr->i.Wcrypt_buffer)
392 #  define w32_servent           (thr->i.Wservent)
393 #  define w32_init_socktype     (thr->i.Winit_socktype)
394 #else
395 #  define w32_strerror_buffer   (PL_sys_intern.thr_intern.Wstrerror_buffer)
396 #  define w32_getlogin_buffer   (PL_sys_intern.thr_intern.Wgetlogin_buffer)
397 #  define w32_crypt_buffer      (PL_sys_intern.thr_intern.Wcrypt_buffer)
398 #  define w32_servent           (PL_sys_intern.thr_intern.Wservent)
399 #  define w32_init_socktype     (PL_sys_intern.thr_intern.Winit_socktype)
400 #endif /* USE_5005THREADS */
401
402 /* UNICODE<>ANSI translation helpers */
403 /* Use CP_ACP when mode is ANSI */
404 /* Use CP_UTF8 when mode is UTF8 */
405
406 #define A2WHELPER_LEN(lpa, alen, lpw, nBytes)\
407     (lpw[0] = 0, MultiByteToWideChar((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
408                                     lpa, alen, lpw, (nBytes/sizeof(WCHAR))))
409 #define A2WHELPER(lpa, lpw, nBytes)     A2WHELPER_LEN(lpa, -1, lpw, nBytes)
410
411 #define W2AHELPER_LEN(lpw, wlen, lpa, nChars)\
412     (lpa[0] = '\0', WideCharToMultiByte((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
413                                        lpw, wlen, (LPSTR)lpa, nChars,NULL,NULL))
414 #define W2AHELPER(lpw, lpa, nChars)     W2AHELPER_LEN(lpw, -1, lpa, nChars)
415
416 #define USING_WIDE() (PL_widesyscalls && PerlEnv_os_id() == VER_PLATFORM_WIN32_NT)
417
418 #ifdef USE_ITHREADS
419 #  define PERL_WAIT_FOR_CHILDREN \
420     STMT_START {                                                        \
421         if (w32_pseudo_children && w32_num_pseudo_children) {           \
422             long children = w32_num_pseudo_children;                    \
423             WaitForMultipleObjects(children,                            \
424                                    w32_pseudo_child_handles,            \
425                                    TRUE, INFINITE);                     \
426             while (children)                                            \
427                 CloseHandle(w32_pseudo_child_handles[--children]);      \
428         }                                                               \
429     } STMT_END
430 #endif
431
432 /*
433  * This provides a layer of functions and macros to ensure extensions will
434  * get to use the same RTL functions as the core.
435  */
436 #include "win32iop.h"
437
438 #endif /* _INC_WIN32_PERL5 */
439