summaryrefslogtreecommitdiff
path: root/deadbeef.h
diff options
context:
space:
mode:
Diffstat (limited to 'deadbeef.h')
-rw-r--r--deadbeef.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/deadbeef.h b/deadbeef.h
index e7b42a7e..355b0d9a 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -799,14 +799,12 @@ typedef struct DB_dsp_s {
int (*num_params) (void);
const char *(*get_param_name) (int p);
- void (*set_param) (ddb_dsp_context_t *ctx, int p, float val);
- float (*get_param) (ddb_dsp_context_t *ctx, int p);
+ void (*set_param) (ddb_dsp_context_t *ctx, int p, const char *val);
+ void (*get_param) (ddb_dsp_context_t *ctx, int p, char *str, int len);
- void (*set_param_str) (ddb_dsp_context_t *ctx, int p, const char *val);
- void (*get_param_str) (ddb_dsp_context_t *ctx, int p, char *str, int len);
+ const char *configdialog; // separate dialog per dsp context
} DB_dsp_t;
-
// misc plugin
// purpose is to provide extra services
// e.g. scrobbling, converting, tagging, custom gui, etc.