This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Replace sv_catsv_mg and sv_catpvn_mg, and move the obsolete bodies to
[perl5.git] / NetWare / iperlhost.h
CommitLineData
2986a63f
JH
1
2/*
3 * Copyright © 2001 Novell, Inc. All Rights Reserved.
4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
8 */
9
10/*
9219c8de
JH
11 * FILENAME : iperlhost.h
12 * DESCRIPTION : IPerlHost class file.
13 * Author : SGP
14 * Date Created : January 2001.
15 * Date Modified: July 2nd 2001.
2986a63f
JH
16 */
17
18
19
20#ifndef __iPerlHost_H__
21#define __iPerlHost_H__
22
23
24#include "EXTERN.h"
25#include "perl.h"
26
27
28class IPerlHost
29{
30public:
31 virtual int VersionNumber() = 0;
32
33 virtual int PerlCreate(PerlInterpreter *my_perl) = 0;
34 virtual int PerlParse(PerlInterpreter *my_perl,int argc, char** argv, char** env) = 0;
35 virtual int PerlRun(PerlInterpreter *my_perl) = 0;
36 virtual void PerlDestroy(PerlInterpreter *my_perl) = 0;
4d76e4b4
JH
37 virtual void PerlFree(PerlInterpreter *my_perl) = 0;
38
011f1a1a
JH
39 //virtual bool RegisterWithThreadTable(void)=0;
40 //virtual bool UnregisterWithThreadTable(void)=0;
2986a63f
JH
41};
42
43extern "C" IPerlHost* AllocStdPerl();
44extern "C" void FreeStdPerl(IPerlHost* pPerlHost);
45
46
47#endif // __iPerlHost_H__
48