File: plugin.h

package info (click to toggle)
exult 1.12.1-1
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 43,856 kB
  • sloc: cpp: 170,016; xml: 7,400; yacc: 2,850; makefile: 2,419; java: 1,901; ansic: 1,654; lex: 673; sh: 550; objc: 416
file content (14 lines) | stat: -rw-r--r-- 438 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * author: Aurelien Marchand
 * licence: GPL
 * date: 20/06/03
 *
 */

char*       plug_error(void);
void*       plug_load_func(libhandle_t a_hdl, const char* func_name);
libhandle_t plug_load(char* plug_name);
int         plug_unload(libhandle_t a_hdl);
int         add_plugin_apply(int col_index, libhandle_t a_hdl);
int         add_plugin_parse(char* line, libhandle_t a_hdl);
node*       add_handle(libhandle_t a_hdl, node* list);