#include "ekg2-config.h"#include "python.h"#include <sys/types.h>#include <stdlib.h>#include <unistd.h>#include <errno.h>#include <fcntl.h>#include <string.h>#include <Python.h>#include <ekg/debug.h>#include <ekg/plugins.h>#include <ekg/commands.h>#include <ekg/dynstuff.h>#include <ekg/protocol.h>#include <ekg/stuff.h>#include <ekg/themes.h>#include <ekg/userlist.h>#include <ekg/vars.h>#include <ekg/xmalloc.h>#include "python-plugin.h"Funkcje | |
| int | ekg_plugin_init (ekg_pluginObj *self, PyObject *args, PyObject *kwds) |
| PyObject * | ekg_plugin_get_attr (ekg_pluginObj *self, char *attr) |
| void | ekg_plugin_dealloc (ekg_pluginObj *o) |
| PyObject * | ekg_plugin_load (ekg_pluginObj *self, PyObject *args) |
| PyObject * | ekg_plugin_is_loaded (ekg_pluginObj *self, PyObject *args) |
| PyObject * | ekg_plugin_unload (ekg_pluginObj *self, PyObject *args) |
| void ekg_plugin_dealloc | ( | ekg_pluginObj * | o | ) |
deallocation of plugin object
| PyObject* ekg_plugin_get_attr | ( | ekg_pluginObj * | self, | |
| char * | attr | |||
| ) |
get attribute from plugin object
| int ekg_plugin_init | ( | ekg_pluginObj * | self, | |
| PyObject * | args, | |||
| PyObject * | kwds | |||
| ) |
initialization of plugin object
| PyObject* ekg_plugin_is_loaded | ( | ekg_pluginObj * | self, | |
| PyObject * | args | |||
| ) |
load plugin
| PyObject* ekg_plugin_load | ( | ekg_pluginObj * | self, | |
| PyObject * | args | |||
| ) |
load plugin
| PyObject* ekg_plugin_unload | ( | ekg_pluginObj * | self, | |
| PyObject * | args | |||
| ) |
unload plugin
1.7.1