-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathperl_interpreter.h
57 lines (44 loc) · 2.57 KB
/
perl_interpreter.h
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
/***
Copyright 2010-2021 by Omar Alejandro Herrera Reyna
Caume Data Security Engine, also known as CaumeDSE is released under the
GNU General Public License by the Copyright holder, with the additional
exemption that compiling, linking, and/or using OpenSSL is allowed.
LICENSE
This file is part of Caume Data Security Engine, also called CaumeDSE.
CaumeDSE is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CaumeDSE is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with CaumeDSE. If not, see <http://www.gnu.org/licenses/>.
INCLUDED SOFTWARE
This product includes software developed by the OpenSSL Project
for use in the OpenSSL Toolkit (http://www.openssl.org/).
This product includes cryptographic software written by
Eric Young ([email protected]).
This product includes software written by
Tim Hudson ([email protected]).
This product includes software from the SQLite library that is in
the public domain (http://www.sqlite.org/copyright.html).
This product includes software from the GNU Libmicrohttpd project, Copyright
© 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
2008, 2009, 2010 , 2011, 2012 Free Software Foundation, Inc.
This product includes software from Perl5, which is Copyright (C) 1993-2005,
by Larry Wall and others.
***/
#ifndef PERL_INTERPRETER_H_INCLUDED
#define PERL_INTERPRETER_H_INCLUDED
// Wrapper function for perl_parse() - use cmdline style, parameter list
int cmePerlParserCmdLineInit (int argc, char **argv, PerlInterpreter *myPerl);
// Wrapper function for perl_parse() - use a single instruction string as parameter
int cmePerlParserInstruction (char *perlInstruction, PerlInterpreter *myPerl);
// Wrapper function for perl_parse() - use a single script filename as parameter
int cmePerlParserRun (PerlInterpreter *myPerl);
// Wrapper function cmePerlParserCmdLineInit() and call_pv()
int cmePerlParserScriptFunction (const char *fName, PerlInterpreter *myPerl, char **args,
int numArgs, char **results, int maxResults, int *returnedResults);
#endif // PERL_INTERPRETER_H_INCLUDED