3 * (c) 1995 Microsoft Corporation. All rights reserved.
4 * Developed by hip communications inc., http://info.hip.com/info/
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.
9 #ifndef _INC_WIN32_PERL5
10 #define _INC_WIN32_PERL5
13 # define _WIN32_WINNT 0x0400 /* needed for TryEnterCriticalSection() etc. */
16 #if defined(PERL_OBJECT) || defined(PERL_IMPLICIT_SYS) || defined(PERL_CAPI)
17 # define DYNAMIC_ENV_FETCH
18 # define ENV_HV_NAME "___ENV_HV_NAME___"
19 # define HAS_GETENV_LEN
20 # define prime_env_iter()
21 # define WIN32IO_IS_STDIO /* don't pull in custom stdio layer */
22 # define WIN32SCK_IS_STDSCK /* don't pull in custom wsock layer */
23 # ifdef PERL_GLOBAL_STRUCT
24 # error PERL_GLOBAL_STRUCT cannot be defined with PERL_IMPLICIT_SYS
26 # define win32_get_privlib PerlEnv_lib_path
27 # define win32_get_sitelib PerlEnv_sitelib_path
28 # define win32_get_vendorlib PerlEnv_vendorlib_path
32 # ifndef __int64 /* some versions seem to #define it already */
33 # define __int64 long long
35 # define Win32_Winsock
38 /* Define DllExport akin to perl's EXT,
39 * If we are in the DLL or mimicing the DLL for Win95 work round
40 * then Export the symbol,
41 * otherwise import it.
44 /* now even GCC supports __declspec() */
46 #if defined(PERL_OBJECT)
49 #if defined(PERLDLL) || defined(WIN95FIX)
51 /*#define DllExport __declspec(dllexport)*/ /* noises with VC5+sp3 */
53 #define DllExport __declspec(dllimport)
57 #define WIN32_LEAN_AND_MEAN
60 #ifdef WIN32_LEAN_AND_MEAN /* C file is NOT a Perl5 original. */
61 #define CONTEXT PERL_CONTEXT /* Avoid conflict of CONTEXT defs. */
62 #endif /*WIN32_LEAN_AND_MEAN */
64 #ifndef TLS_OUT_OF_INDEXES
65 #define TLS_OUT_OF_INDEXES (DWORD)0xFFFFFFFF
91 char sysname[SYS_NMLN];
92 char nodename[SYS_NMLN];
93 char release[SYS_NMLN];
94 char version[SYS_NMLN];
95 char machine[SYS_NMLN];
98 #ifndef START_EXTERN_C
101 # define START_EXTERN_C extern "C" {
102 # define END_EXTERN_C }
103 # define EXTERN_C extern "C"
105 # define START_EXTERN_C
106 # define END_EXTERN_C
112 #define DOSISH 1 /* no escaping our roots */
113 #define OP_BINARY O_BINARY /* mistake in in pp_sys.c? */
115 /* Define USE_SOCKETS_AS_HANDLES to enable emulation of windows sockets as
116 * real filehandles. XXX Should always be defined (the other version is untested) */
117 #define USE_SOCKETS_AS_HANDLES
119 /* read() and write() aren't transparent for socket handles */
120 #define PERL_SOCK_SYSREAD_IS_RECV
121 #define PERL_SOCK_SYSWRITE_IS_SEND
123 #define PERL_NO_FORCE_LINK /* no need for PL_force_link_funcs */
125 /* if USE_WIN32_RTL_ENV is not defined, Perl uses direct Win32 calls
126 * to read the environment, bypassing the runtime's (usually broken)
127 * facilities for accessing the same. See note in util.c/my_setenv(). */
128 /*#define USE_WIN32_RTL_ENV */
130 /* Define USE_FIXED_OSFHANDLE to fix MSVCRT's _open_osfhandle() on W95.
131 It now uses some black magic to work seamlessly with the DLL CRT and
132 works with MSVC++ 4.0+ or GCC/Mingw32
134 #if (defined(_M_IX86) && _MSC_VER >= 1000) || defined(__MINGW32__)
135 #define USE_FIXED_OSFHANDLE
138 /* Define PERL_WIN32_SOCK_DLOAD to have Perl dynamically load the winsock
139 DLL when needed. Don't use if your compiler supports delayloading (ie, VC++ 6.0)
141 #if !(defined(_M_IX86) && _MSC_VER >= 1200)
142 #define PERL_WIN32_SOCK_DLOAD
144 #define ENV_IS_CASELESS
146 #ifndef VER_PLATFORM_WIN32_WINDOWS /* VC-2.0 headers don't have this */
147 #define VER_PLATFORM_WIN32_WINDOWS 1
150 #ifndef FILE_SHARE_DELETE /* VC-4.0 headers don't have this */
151 #define FILE_SHARE_DELETE 0x00000004
154 /* access() mode bits */
162 #define PERL_GET_CONTEXT_DEFINED
164 /* Compiler-specific stuff. */
166 #ifdef __BORLANDC__ /* Borland C++ */
168 #define _access access
170 #define _getpid getpid
171 #define wcsicmp _wcsicmp
172 #include <sys/types.h>
175 #define DllMain DllEntryPoint
178 #pragma warn -ccc /* "condition is always true/false" */
179 #pragma warn -rch /* "unreachable code" */
180 #pragma warn -sig /* "conversion may lose significant digits" */
181 #pragma warn -pia /* "possibly incorrect assignment" */
182 #pragma warn -par /* "parameter 'foo' is never used" */
183 #pragma warn -aus /* "'foo' is assigned a value that is never used" */
184 #pragma warn -use /* "'foo' is declared but never used" */
185 #pragma warn -csu /* "comparing signed and unsigned values" */
186 #pragma warn -pro /* "call to function with no prototype" */
187 #pragma warn -stu /* "undefined structure 'foo'" */
189 /* Borland is picky about a bare member function name used as its ptr */
191 # define MEMBER_TO_FPTR(name) &(name)
194 /* Borland C thinks that a pointer to a member variable is 12 bytes in size. */
195 #define PERL_MEMBER_PTR_SIZE 12
199 #ifdef _MSC_VER /* Microsoft Visual C++ */
203 typedef unsigned short mode_t;
204 #pragma warning(disable: 4018 4035 4101 4102 4244 4245 4761)
206 /* Visual C thinks that a pointer to a member variable is 16 bytes in size. */
207 #define PERL_MEMBER_PTR_SIZE 16
211 #endif /* _MSC_VER */
213 #ifdef __MINGW32__ /* Minimal Gnu-Win32 */
218 #define _environ environ
220 #define flushall _flushall
221 #define fcloseall _fcloseall
222 #define isnan _isnan /* ...same libraries as MSVC */
225 # define MEMBER_TO_FPTR(name) &(name)
229 # define _O_NOINHERIT 0x0080
230 # ifndef _NO_OLDNAMES
231 # define O_NOINHERIT _O_NOINHERIT
235 #endif /* __MINGW32__ */
237 /* both GCC/Mingw32 and MSVC++ 4.0 are missing this, so we put it here */
239 # define CP_UTF8 65001
242 /* compatibility stuff for other compilers goes here */
245 #if !defined(PERL_OBJECT) && defined(PERL_CAPI) && defined(PERL_MEMBER_PTR_SIZE)
246 # define STRUCT_MGVTBL_DEFINITION \
249 int (CPERLscope(*svt_get))(pTHX_ SV *sv, MAGIC* mg); \
250 char handle_VC_problem1[PERL_MEMBER_PTR_SIZE]; \
253 int (CPERLscope(*svt_set))(pTHX_ SV *sv, MAGIC* mg); \
254 char handle_VC_problem2[PERL_MEMBER_PTR_SIZE]; \
257 U32 (CPERLscope(*svt_len))(pTHX_ SV *sv, MAGIC* mg); \
258 char handle_VC_problem3[PERL_MEMBER_PTR_SIZE]; \
261 int (CPERLscope(*svt_clear))(pTHX_ SV *sv, MAGIC* mg); \
262 char handle_VC_problem4[PERL_MEMBER_PTR_SIZE]; \
265 int (CPERLscope(*svt_free))(pTHX_ SV *sv, MAGIC* mg); \
266 char handle_VC_problem5[PERL_MEMBER_PTR_SIZE]; \
270 # define BASEOP_DEFINITION \
273 OP* (CPERLscope(*op_ppaddr))(pTHX); \
274 char handle_VC_problem[PERL_MEMBER_PTR_SIZE-sizeof(OP*)]; \
281 #endif /* !PERL_OBJECT && PERL_CAPI && PERL_MEMBER_PTR_SIZE */
286 /* For UNIX compatibility. */
288 extern uid_t getuid(void);
289 extern gid_t getgid(void);
290 extern uid_t geteuid(void);
291 extern gid_t getegid(void);
292 extern int setuid(uid_t uid);
293 extern int setgid(gid_t gid);
294 extern int kill(int pid, int sig);
295 extern void *sbrk(int need);
296 extern char * getlogin(void);
297 extern int chown(const char *p, uid_t o, gid_t g);
300 #define Stat win32_stat
302 #undef init_os_extras
303 #define init_os_extras Perl_init_os_extras
305 DllExport void Perl_win32_init(int *argcp, char ***argvp);
306 DllExport void Perl_init_os_extras();
307 DllExport void win32_str_os_error(void *sv, DWORD err);
308 DllExport int RunPerl(int argc, char **argv, char **env);
315 * the following correspond to the fields of the same name
316 * in the STARTUPINFO structure. Embedders can use these to
317 * control the spawning process' look.
318 * Example - to hide the window of the spawned process:
319 * dwFlags = STARTF_USESHOWWINDOW;
320 * wShowWindow = SW_HIDE;
329 DWORD dwFillAttribute;
333 DllExport void win32_get_child_IO(child_IO_table* ptr);
335 #ifndef USE_SOCKETS_AS_HANDLES
336 extern FILE * my_fdopen(int, char *);
338 extern int my_fclose(FILE *);
339 extern int do_aspawn(void *really, void **mark, void **sp);
340 extern int do_spawn(char *cmd);
341 extern int do_spawn_nowait(char *cmd);
342 extern char * win32_get_privlib(const char *pl);
343 extern char * win32_get_sitelib(const char *pl);
344 extern char * win32_get_vendorlib(const char *pl);
345 extern int IsWin95(void);
346 extern int IsWinNT(void);
347 extern void win32_argv2utf8(int argc, char** argv);
349 #ifdef PERL_IMPLICIT_SYS
350 extern void win32_delete_internal_host(void *h);
353 extern char * staticlinkmodules[];
357 typedef char * caddr_t; /* In malloc.c (core address). */
360 * handle socket stuff, assuming socket is always available
362 #include <sys/socket.h>
366 #define EMBEDMYMALLOC /**/
367 /* #define USE_PERL_SBRK /**/
368 /* #define PERL_SBRK_VIA_MALLOC /**/
371 #if defined(PERLDLL) && !defined(PERL_CORE)
375 #ifdef PERL_TEXTMODE_SCRIPTS
376 # define PERL_SCRIPT_MODE "r"
378 # define PERL_SCRIPT_MODE "rb"
382 * Now Win32 specific per-thread data stuff
385 struct thread_intern {
386 /* XXX can probably use one buffer instead of several */
387 char Wstrerror_buffer[512];
388 struct servent Wservent;
389 char Wgetlogin_buffer[128];
390 # ifdef USE_SOCKETS_AS_HANDLES
393 # ifdef HAVE_DES_FCRYPT
394 char Wcrypt_buffer[30];
396 # ifdef USE_RTL_THREAD_API
397 void * retv; /* slot for thread return value */
402 # ifndef USE_DECLSPEC_THREAD
403 # define HAVE_THREAD_INTERN
404 # endif /* !USE_DECLSPEC_THREAD */
405 #endif /* USE_THREADS */
407 #define HAVE_INTERP_INTERN
410 DWORD pids[MAXIMUM_WAIT_OBJECTS];
411 HANDLE handles[MAXIMUM_WAIT_OBJECTS];
414 struct interp_intern {
415 char * perlshell_tokens;
416 char ** perlshell_vec;
417 long perlshell_items;
419 child_tab * children;
422 child_tab * pseudo_children;
424 void * internal_host;
426 struct thread_intern thr_intern;
431 #define w32_perlshell_tokens (PL_sys_intern.perlshell_tokens)
432 #define w32_perlshell_vec (PL_sys_intern.perlshell_vec)
433 #define w32_perlshell_items (PL_sys_intern.perlshell_items)
434 #define w32_fdpid (PL_sys_intern.fdpid)
435 #define w32_children (PL_sys_intern.children)
436 #define w32_num_children (w32_children->num)
437 #define w32_child_pids (w32_children->pids)
438 #define w32_child_handles (w32_children->handles)
439 #define w32_pseudo_id (PL_sys_intern.pseudo_id)
440 #define w32_pseudo_children (PL_sys_intern.pseudo_children)
441 #define w32_num_pseudo_children (w32_pseudo_children->num)
442 #define w32_pseudo_child_pids (w32_pseudo_children->pids)
443 #define w32_pseudo_child_handles (w32_pseudo_children->handles)
444 #define w32_internal_host (PL_sys_intern.internal_host)
446 # define w32_strerror_buffer (thr->i.Wstrerror_buffer)
447 # define w32_getlogin_buffer (thr->i.Wgetlogin_buffer)
448 # define w32_crypt_buffer (thr->i.Wcrypt_buffer)
449 # define w32_servent (thr->i.Wservent)
450 # define w32_init_socktype (thr->i.Winit_socktype)
452 # define w32_strerror_buffer (PL_sys_intern.thr_intern.Wstrerror_buffer)
453 # define w32_getlogin_buffer (PL_sys_intern.thr_intern.Wgetlogin_buffer)
454 # define w32_crypt_buffer (PL_sys_intern.thr_intern.Wcrypt_buffer)
455 # define w32_servent (PL_sys_intern.thr_intern.Wservent)
456 # define w32_init_socktype (PL_sys_intern.thr_intern.Winit_socktype)
457 #endif /* USE_THREADS */
459 /* UNICODE<>ANSI translation helpers */
460 /* Use CP_ACP when mode is ANSI */
461 /* Use CP_UTF8 when mode is UTF8 */
463 #define A2WHELPER_LEN(lpa, alen, lpw, nBytes)\
464 (lpw[0] = 0, MultiByteToWideChar((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
465 lpa, alen, lpw, (nBytes/sizeof(WCHAR))))
466 #define A2WHELPER(lpa, lpw, nBytes) A2WHELPER_LEN(lpa, -1, lpw, nBytes)
468 #define W2AHELPER_LEN(lpw, wlen, lpa, nChars)\
469 (lpa[0] = '\0', WideCharToMultiByte((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
470 lpw, wlen, (LPSTR)lpa, nChars,NULL,NULL))
471 #define W2AHELPER(lpw, lpa, nChars) W2AHELPER_LEN(lpw, -1, lpa, nChars)
473 #define USING_WIDE() (PL_widesyscalls && PerlEnv_os_id() == VER_PLATFORM_WIN32_NT)
476 # define PERL_WAIT_FOR_CHILDREN \
478 if (w32_pseudo_children && w32_num_pseudo_children) { \
479 long children = w32_num_pseudo_children; \
480 WaitForMultipleObjects(children, \
481 w32_pseudo_child_handles, \
484 CloseHandle(w32_pseudo_child_handles[--children]); \
490 * This provides a layer of functions and macros to ensure extensions will
491 * get to use the same RTL functions as the core.
493 #include "win32iop.h"
499 #endif /* _INC_WIN32_PERL5 */