summaryrefslogtreecommitdiff
path: root/deadbeef.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-10-10 22:27:00 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-10-10 22:27:00 +0200
commit22838720bbe1fc3c9fd46f34aa91474c7d6005a3 (patch)
tree1b0ced0e2a727c5bb28dfb846e01098f8e2678d6 /deadbeef.h
parente9223dae281dec518e7e54f63f017d39415ca80d (diff)
updated plugins descriptions
added basic gui configuration window
Diffstat (limited to 'deadbeef.h')
-rw-r--r--deadbeef.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/deadbeef.h b/deadbeef.h
index 29594658..6232236f 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -230,6 +230,15 @@ typedef struct {
int (*conf_get_int) (const char *key, int def);
void (*conf_set_str) (const char *key, const char *val);
DB_conf_item_t * (*conf_find) (const char *group, DB_conf_item_t *prev);
+ // exporting plugin conf options for gui
+ // all exported options are grouped by plugin, and will be available to user
+ // from gui
+// void (*export_plugin_option_string) (DB_plugin_t *plugin, const char *key);
+// void (*export_plugin_option_path) (DB_plugin_t *plugin, const char *key);
+// void (*export_plugin_option_check) (DB_plugin_t *plugin, const char *key);
+// void (*export_plugin_option_radio) (DB_plugin_t *plugin, const char *key);
+// void (*export_plugin_option_combo) (DB_plugin_t *plugin, const char *key);
+// void (*export_plugin_option_comboentry) (DB_plugin_t *plugin, const char *key);
} DB_functions_t;
// base plugin interface