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