#include <register_functions.h>
Data Fields | |
char * | name |
int(* | trigger_cb )(int argc, char **argv, int x, int y) |
const char * | description |
const char * | syntax |
Definition at line 42 of file register_functions.h.
const char* fpw_function_t::description |
This is a short description that sometimes accompanies the name.
Definition at line 52 of file register_functions.h.
char* fpw_function_t::name |
This name is matched against fuction names.
Definition at line 45 of file register_functions.h.
Referenced by fpw_function_sort().
const char* fpw_function_t::syntax |
Full allowed syntax; use \n to separate lines.
Definition at line 55 of file register_functions.h.
int(* fpw_function_t::trigger_cb)(int argc, char **argv, int x, int y) |
Is called when the function is called.
If this function returns non-zero, no further actions will be invoked for this event.
Definition at line 46 of file register_functions.h.
Referenced by fpw_functionv().