X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=graph_list.h;h=e6b6888cdbf528724ac18a310dd8a70f9d8fcfd8;hb=de9239ac3e16e12503eae5ddbfcdaae27f262081;hp=979c13d763564046672e5bd3b1639d116716227d;hpb=f61054f1c4bdda9cdb8fed14add70bcfe4132349;p=collection4.git diff --git a/graph_list.h b/graph_list.h index 979c13d..e6b6888 100644 --- a/graph_list.h +++ b/graph_list.h @@ -1,31 +1,27 @@ #ifndef GRAPH_LIST_H #define GRAPH_LIST_H 1 +#include "graph_types.h" +#include "graph.h" #include "graph_instance.h" /* - * Callback types - */ -typedef int (*gl_cfg_callback) (graph_config_t *cfg, - void *user_data); - -typedef int (*gl_inst_callback) (graph_config_t *cfg, - graph_instance_t *inst, void *user_data); - -/* * Functions */ int gl_add_graph (graph_config_t *cfg); -int gl_graph_get_all (gl_cfg_callback callback, - void *user_data); +int gl_config_submit (void); + +graph_config_t *gl_graph_get_selected (void); -graph_config_t *graph_get_selected (void); +int gl_graph_get_all (graph_callback_t callback, void *user_data); + +int gl_graph_instance_get_all (graph_config_t *cfg, graph_inst_callback_t callback, + void *user_data); -int gl_graph_instance_get_all (graph_config_t *cfg, - gl_inst_callback callback, void *user_data); +int gl_instance_get_all (graph_inst_callback_t callback, void *user_data); -int gl_instance_get_all (gl_inst_callback callback, +int gl_search (const char *search, graph_inst_callback_t callback, void *user_data); int gl_update (void);