KVIrc 5.2.0
Developer APIs
perlcoreinterface.h
Go to the documentation of this file.
1#ifndef _PERLCOREINTERFACE_H_
2#define _PERLCOREINTERFACE_H_
3//=============================================================================
4//
5// File : perlcoreinterface.h
6// Creation date : Tue Jul 13 13:03:31 2004 GMT by Szymon Stefanek
7//
8// This file is part of the KVIrc IRC client distribution
9// Copyright (C) 2004-2010 Szymon Stefanek (pragma at kvirc dot net)
10//
11// This program is FREE software. You can redistribute it and/or
12// modify it under the terms of the GNU General Public License
13// as published by the Free Software Foundation; either version 2
14// of the License, or (at your option) any later version.
15//
16// This program is distributed in the HOPE that it will be USEFUL,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19// See the GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program. If not, write to the Free Software Foundation,
23// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24//
25//=============================================================================
26
27#include "kvi_settings.h"
28#include "KviQString.h"
30
31#include <QStringList>
32
33#define KVI_PERLCORECTRLCOMMAND_EXECUTE "execute"
34
36{
37 unsigned int uSize;
39 QString szContext;
40 QString szCode;
41 bool bExitOk;
42 QString szRetVal;
43 QString szError;
44 QStringList lWarnings;
45 QStringList lArgs;
46 bool bQuiet;
47};
48
49#define KVI_PERLCORECTRLCOMMAND_DESTROY "destroy"
50
52{
53 unsigned int uSize;
54 QString szContext;
55};
56
57#endif // !_PERLCOREINTERFACE_H_
Helper functions for the QString class.
Definition KviKvsRunTimeContext.h:104
This file contains compile time settings.
Definition perlcoreinterface.h:52
QString szContext
Definition perlcoreinterface.h:54
unsigned int uSize
Definition perlcoreinterface.h:53
Definition perlcoreinterface.h:36
QString szRetVal
Definition perlcoreinterface.h:42
QString szContext
Definition perlcoreinterface.h:39
KviKvsRunTimeContext * pKvsContext
Definition perlcoreinterface.h:38
unsigned int uSize
Definition perlcoreinterface.h:37
QString szCode
Definition perlcoreinterface.h:40
bool bExitOk
Definition perlcoreinterface.h:41
QStringList lWarnings
Definition perlcoreinterface.h:44
QStringList lArgs
Definition perlcoreinterface.h:45
QString szError
Definition perlcoreinterface.h:43
bool bQuiet
Definition perlcoreinterface.h:46