1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#include "INTERN.h"
#include "perl.h"
#ifdef PERL_OBJECT
#undef PERLVAR
#define PERLVAR(x, y)
#undef PERLVARI
#define PERLVARI(x, y, z) PL_##x = z;
#undef PERLVARIC
#define PERLVARIC(x, y, z) PL_##x = z;
CPerlObj::CPerlObj(IPerlMem* ipM, IPerlEnv* ipE, IPerlStdIO* ipStd,
IPerlLIO* ipLIO, IPerlDir* ipD, IPerlSock* ipS, IPerlProc* ipP)
{
memset(((char*)this)+sizeof(void*), 0, sizeof(CPerlObj)-sizeof(void*));
#include "thrdvar.h"
#include "intrpvar.h"
#include "perlvars.h"
PL_piMem = ipM;
PL_piENV = ipE;
PL_piStdIO = ipStd;
PL_piLIO = ipLIO;
PL_piDir = ipD;
PL_piSock = ipS;
PL_piProc = ipP;
}
void*
CPerlObj::operator new(size_t nSize, IPerlMem *pvtbl)
{
if(pvtbl != NULL)
return pvtbl->Malloc(nSize);
return NULL;
}
int&
CPerlObj::ErrorNo(void)
{
return errno;
}
void
CPerlObj::Init(void)
{
}
int
fprintf(PerlIO *stream, const char *format, ...)
{
va_list(arglist);
va_start(arglist, format);
return PerlIO_vprintf(stream, format, arglist);
}
#ifdef WIN32 /* XXX why are these needed? */
bool
do_exec(char *cmd)
{
return PerlProc_Cmd(cmd);
}
int
do_aspawn(void *vreally, void **vmark, void **vsp)
{
return PerlProc_aspawn(vreally, vmark, vsp);
}
#endif /* WIN32 */
#endif /* PERL_OBJECT */
|