|
static void | list_script_free (script_t *data) |
|
static void | scripts_add (script_t *new_) |
|
static void | scripts_remove (script_t *elem) |
|
static void | scriptlang_add (scriptlang_t *new_) |
|
static void | scriptlang_unlink (scriptlang_t *elem) |
|
static int | script_command_handlers (const char *name, const char **params, session_t *session, const char *target, int quiet) |
|
static gint | script_timer_handlers (gint type, gpointer data) |
|
static void | script_var_changed (const char *var) |
|
static int | script_query_handlers (void *data, va_list ap) |
|
static int | script_handle_watch (int type, int fd, watch_type_t watch, void *data) |
|
static int | script_plugin_theme_init () |
|
static int | scripts_autoload (scriptlang_t *scr) |
|
static char * | script_find_path (const char *name) |
|
scriptlang_t * | scriptlang_from_ext (char *name) |
|
int | scriptlang_register (scriptlang_t *s) |
|
int | scriptlang_unregister (scriptlang_t *s) |
|
int | script_autorun (char *scriptname, int isautorun) |
|
int | script_reset (scriptlang_t *scr) |
|
int | script_list (scriptlang_t *s) |
|
int | script_var_list (script_t *scr) |
|
int | script_unload (script_t *scr) |
|
script_t * | script_find (scriptlang_t *s, char *name) |
|
int | script_unload_name (scriptlang_t *s, char *name) |
|
int | script_unload_lang (scriptlang_t *s) |
|
int | script_load (scriptlang_t *s, char *tname) |
|
int | script_variables_read () |
|
void | script_variables_free () |
|
void | script_variables_write () |
|
script_command_t * | script_command_find (const char *name) |
|
script_var_t * | script_var_find (const char *name) |
|
int | script_command_unbind (script_command_t *temp, int free) |
|
int | script_query_unbind (script_query_t *temp, int free) |
|
int | script_plugin_destroy () |
|
int | script_timer_unbind (script_timer_t *temp, int remove) |
|
int | script_watch_unbind (script_watch_t *temp, int remove) |
|
int | script_var_unbind (script_var_t *temp, int free) |
|
script_var_t * | script_var_add_full (scriptlang_t *s, script_t *scr, char *name, int type, char *value, void *handler) |
|
script_var_t * | script_var_add (scriptlang_t *s, script_t *scr, char *name, char *value, void *handler) |
|
script_command_t * | script_command_bind (scriptlang_t *s, script_t *scr, char *command, char *params, char *possibilities, void *handler) |
|
script_plugin_t * | script_plugin_init (scriptlang_t *s, script_t *scr, char *name, plugin_class_t pclass, void *handler) |
|
script_timer_t * | script_timer_bind (scriptlang_t *s, script_t *scr, int freq, void *handler) |
|
script_watch_t * | script_watch_add (scriptlang_t *s, script_t *scr, int fd, int type, void *handler, void *data) |
|
script_query_t * | script_query_bind (scriptlang_t *s, script_t *scr, char *qname, void *handler) |
|
static int | scripts_loaddir (scriptlang_t *s, const char *path) |
|
int | cmd_script (const char *name, const char **params, session_t *session, const char *target, int quiet) |
|
int | script_postinit (void *data, va_list ap) |
|
int | scripts_init () |
|