This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[asperl] tweak makefiles
[perl5.git] / win32 / win32.h
CommitLineData
68dc0745 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 */
0a753a76 9#ifndef _INC_WIN32_PERL5
10#define _INC_WIN32_PERL5
11
9d8a25dc
DL
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
00dc2f4f
GS
19#define win32_get_stdlib PerlEnv_lib_path
20#define win32_get_sitelib PerlEnv_sitelib_path
9d8a25dc
DL
21#endif
22
a835ef8a 23#ifdef __GNUC__
a835ef8a
NIS
24typedef long long __int64;
25#define Win32_Winsock
ac4c12e7
GS
26# ifdef __cplusplus
27#undef __attribute__ /* seems broken in 2.8.0 */
28#define __attribute__(p)
29# endif
22239a37
NIS
30/* GCC does not do __declspec() - render it a nop
31 * and turn on options to avoid importing data
32 */
33#define __declspec(x)
34#define PERL_GLOBAL_STRUCT
35#define MULTIPLICITY
d56e6723
GS
36#ifndef TLS_OUT_OF_INDEXES
37#define TLS_OUT_OF_INDEXES (DWORD)0xFFFFFFFF
38#endif
a835ef8a
NIS
39#endif
40
22239a37
NIS
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
c69f6586
GS
47#if defined(PERL_OBJECT)
48#define DllExport
49#else
22239a37
NIS
50#if defined(PERLDLL) || defined(WIN95FIX)
51#define DllExport __declspec(dllexport)
52#else
53#define DllExport __declspec(dllimport)
54#endif
c69f6586 55#endif
c69f112c 56
0a753a76 57#define WIN32_LEAN_AND_MEAN
58#include <windows.h>
59
68dc0745 60#ifdef WIN32_LEAN_AND_MEAN /* C file is NOT a Perl5 original. */
61#define CONTEXT PERL_CONTEXT /* Avoid conflict of CONTEXT defs. */
62#define index strchr /* Why 'index'? */
63#endif /*WIN32_LEAN_AND_MEAN */
0a753a76 64
65#include <dirent.h>
66#include <io.h>
67#include <process.h>
68#include <stdio.h>
69#include <direct.h>
390b85e7
GS
70#include <stdlib.h>
71#ifndef EXT
72#include "EXTERN.h"
73#endif
74
c69f112c
NIS
75struct tms {
76 long tms_utime;
77 long tms_stime;
78 long tms_cutime;
79 long tms_cstime;
80};
81
390b85e7
GS
82#ifndef START_EXTERN_C
83#ifdef __cplusplus
84# define START_EXTERN_C extern "C" {
85# define END_EXTERN_C }
86# define EXTERN_C extern "C"
87#else
88# define START_EXTERN_C
89# define END_EXTERN_C
90# define EXTERN_C
91#endif
92#endif
93
94#define STANDARD_C 1
95#define DOSISH 1 /* no escaping our roots */
96#define OP_BINARY O_BINARY /* mistake in in pp_sys.c? */
0a753a76 97
f3986ebb
GS
98/* Define USE_SOCKETS_AS_HANDLES to enable emulation of windows sockets as
99 * real filehandles. XXX Should always be defined (the other version is untested) */
100#define USE_SOCKETS_AS_HANDLES
101
102/* if USE_WIN32_RTL_ENV is not defined, Perl uses direct Win32 calls
103 * to read the environment, bypassing the runtime's (usually broken)
104 * facilities for accessing the same. See note in util.c/my_setenv(). */
105/*#define USE_WIN32_RTL_ENV */
0a753a76 106
f3986ebb
GS
107/* Define USE_FIXED_OSFHANDLE to fix VC's _open_osfhandle() on W95.
108 * Can only enable it if not using the DLL CRT (it doesn't expose internals) */
109#if defined(_MSC_VER) && !defined(_DLL) && defined(_M_IX86)
110#define USE_FIXED_OSFHANDLE
111#endif
112
902173a3
GS
113#define ENV_IS_CASELESS
114
f3986ebb
GS
115#ifndef VER_PLATFORM_WIN32_WINDOWS /* VC-2.0 headers dont have this */
116#define VER_PLATFORM_WIN32_WINDOWS 1
117#endif
118
119/* Compiler-specific stuff. */
120
910dfcc8 121#ifdef __BORLANDC__ /* Borland C++ */
3e3baf6d
TB
122
123#define _access access
124#define _chdir chdir
125#include <sys/types.h>
126
84902520
TB
127#ifndef DllMain
128#define DllMain DllEntryPoint
129#endif
130
189b2af5
GS
131#pragma warn -ccc /* "condition is always true/false" */
132#pragma warn -rch /* "unreachable code" */
133#pragma warn -sig /* "conversion may lose significant digits" */
134#pragma warn -pia /* "possibly incorrect assignment" */
135#pragma warn -par /* "parameter 'foo' is never used" */
136#pragma warn -aus /* "'foo' is assigned a value that is never used" */
137#pragma warn -use /* "'foo' is declared but never used" */
138#pragma warn -csu /* "comparing signed and unsigned values" */
139#pragma warn -pro /* "call to function with no prototype" */
3e3baf6d 140
4b556e6c
JD
141#define USE_RTL_WAIT /* Borland has a working wait() */
142
ac4c12e7
GS
143/* Borland is picky about a bare member function name used as its ptr */
144#ifdef PERL_OBJECT
145#define FUNC_NAME_TO_PTR(name) &(name)
146#endif
147
910dfcc8 148#endif
3e3baf6d 149
f3986ebb
GS
150#ifdef _MSC_VER /* Microsoft Visual C++ */
151
0a753a76 152typedef long uid_t;
153typedef long gid_t;
f3986ebb
GS
154#pragma warning(disable: 4018 4035 4101 4102 4244 4245 4761)
155
156#endif /* _MSC_VER */
157
910dfcc8
GS
158#ifdef __MINGW32__ /* Minimal Gnu-Win32 */
159
160typedef long uid_t;
161typedef long gid_t;
3730b96e
GS
162#define _environ environ
163#define flushall _flushall
164#define fcloseall _fcloseall
910dfcc8 165
ac4c12e7
GS
166#ifndef _O_NOINHERIT
167# define _O_NOINHERIT 0x0080
168# ifndef _NO_OLDNAMES
169# define O_NOINHERIT _O_NOINHERIT
170# endif
171#endif
172
ba3eb2af
GS
173#ifndef _O_NOINHERIT
174# define _O_NOINHERIT 0x0080
175# ifndef _NO_OLDNAMES
176# define O_NOINHERIT _O_NOINHERIT
177# endif
178#endif
179
910dfcc8
GS
180#endif /* __MINGW32__ */
181
f3986ebb 182/* compatibility stuff for other compilers goes here */
0a753a76 183
0a753a76 184
390b85e7 185START_EXTERN_C
f3986ebb
GS
186
187/* For UNIX compatibility. */
188
0a753a76 189extern uid_t getuid(void);
190extern gid_t getgid(void);
191extern uid_t geteuid(void);
192extern gid_t getegid(void);
0a753a76 193extern int setuid(uid_t uid);
194extern int setgid(gid_t gid);
195extern int kill(int pid, int sig);
161b471a 196extern void *sbrk(int need);
e34ffe5a 197extern char * getlogin(void);
b990f8c8 198extern int chown(const char *p, uid_t o, gid_t g);
d55594ae 199
f3986ebb
GS
200#undef Stat
201#define Stat win32_stat
3e3baf6d 202
f3986ebb
GS
203#undef init_os_extras
204#define init_os_extras Perl_init_os_extras
390b85e7 205
22239a37
NIS
206DllExport void Perl_win32_init(int *argcp, char ***argvp);
207DllExport void Perl_init_os_extras(void);
3730b96e 208DllExport void win32_str_os_error(void *sv, DWORD err);
0551aaa8 209
f3986ebb
GS
210#ifndef USE_SOCKETS_AS_HANDLES
211extern FILE * my_fdopen(int, char *);
d55594ae 212#endif
f3986ebb 213extern int my_fclose(FILE *);
2d7a9237 214extern int do_aspawn(void *really, void **mark, void **sp);
f3986ebb 215extern int do_spawn(char *cmd);
2d7a9237 216extern int do_spawn_nowait(char *cmd);
f3986ebb 217extern char do_exec(char *cmd);
00dc2f4f
GS
218extern char * win32_get_stdlib(char *pl);
219extern char * win32_get_sitelib(char *pl);
f3986ebb
GS
220extern int IsWin95(void);
221extern int IsWinNT(void);
d55594ae 222
f3986ebb 223extern char * staticlinkmodules[];
390b85e7
GS
224
225END_EXTERN_C
d55594ae 226
68dc0745 227typedef char * caddr_t; /* In malloc.c (core address). */
0a753a76 228
68dc0745 229/*
68dc0745 230 * handle socket stuff, assuming socket is always available
231 */
0a753a76 232#include <sys/socket.h>
233#include <netdb.h>
234
bbc8f9de
NIS
235#ifdef MYMALLOC
236#define EMBEDMYMALLOC /**/
237/* #define USE_PERL_SBRK /**/
238/* #define PERL_SBRK_VIA_MALLOC /**/
239#endif
240
c31fac66 241#if defined(PERLDLL) && !defined(PERL_CORE)
bbc8f9de
NIS
242#define PERL_CORE
243#endif
244
a868473f
NIS
245#ifdef USE_BINMODE_SCRIPTS
246#define PERL_SCRIPT_MODE "rb"
247EXT void win32_strip_return(struct sv *sv);
248#else
249#define PERL_SCRIPT_MODE "r"
250#define win32_strip_return(sv) NOOP
251#endif
252
4b556e6c
JD
253#define HAVE_INTERP_INTERN
254struct interp_intern {
255 char * w32_perlshell_tokens;
256 char ** w32_perlshell_vec;
257 long w32_perlshell_items;
258 struct av * w32_fdpid;
259#ifndef USE_RTL_WAIT
260 long w32_num_children;
261 HANDLE w32_child_pids[MAXIMUM_WAIT_OBJECTS];
262#endif
263};
264
9f699bd9
GS
265#define w32_perlshell_tokens (sys_intern.w32_perlshell_tokens)
266#define w32_perlshell_vec (sys_intern.w32_perlshell_vec)
267#define w32_perlshell_items (sys_intern.w32_perlshell_items)
268#define w32_fdpid (sys_intern.w32_fdpid)
4b556e6c
JD
269
270#ifndef USE_RTL_WAIT
9f699bd9
GS
271# define w32_num_children (sys_intern.w32_num_children)
272# define w32_child_pids (sys_intern.w32_child_pids)
4b556e6c
JD
273#endif
274
c53bd28a
NIS
275/*
276 * Now Win32 specific per-thread data stuff
277 */
278
279#ifdef USE_THREADS
e34ffe5a
GS
280# ifndef USE_DECLSPEC_THREAD
281# define HAVE_THREAD_INTERN
282
283struct thread_intern {
284 /* XXX can probably use one buffer instead of several */
285 char Wstrerror_buffer[512];
286 struct servent Wservent;
287 char Wgetlogin_buffer[128];
4b556e6c 288 char Ww32_perllib_root[MAX_PATH+1];
401ef382
SN
289# ifdef USE_SOCKETS_AS_HANDLES
290 int Winit_socktype;
291# endif
e34ffe5a
GS
292# ifdef HAVE_DES_FCRYPT
293 char Wcrypt_buffer[30];
294# endif
2d7a9237
GS
295# ifdef USE_RTL_THREAD_API
296 void * retv; /* slot for thread return value */
297# endif
c53bd28a 298};
e34ffe5a
GS
299# endif /* !USE_DECLSPEC_THREAD */
300#endif /* USE_THREADS */
c53bd28a 301
68dc0745 302#endif /* _INC_WIN32_PERL5 */