ekg2
|
00001 /* 00002 * (C) Copyright 2005 Jakub Zawadzki <darkjames@darkjames.ath.cx> 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License Version 2 as 00006 * published by the Free Software Foundation. 00007 * 00008 * This program is distributed in the hope that it will be useful, 00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00011 * GNU General Public License for more details. 00012 * 00013 * You should have received a copy of the GNU General Public License 00014 * along with this program; if not, write to the Free Software 00015 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00016 */ 00017 #ifndef __PERL_EKG_H_ 00018 #define __PERL_EKG_H_ 00019 00020 #include <ekg/plugins.h> 00021 #include <ekg/scripts.h> 00022 00023 extern scriptlang_t perl_lang; 00024 extern plugin_t perl_plugin; 00025 00026 typedef struct { 00027 char tmp; 00028 } perl_private_t; 00029 #define perl_private(s) (perl_private_t *) script_private_get(s) 00030 00031 /* 00032 * Local Variables: 00033 * mode: c 00034 * c-file-style: "k&r" 00035 * c-basic-offset: 8 00036 * indent-tabs-mode: t 00037 * End: 00038 * vim: sts=8 sw=8 00039 */ 00040 #endif