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