summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-11-05 22:42:16 +0100
committerGravatar waker <wakeroid@gmail.com>2012-11-05 22:42:16 +0100
commit2cb454f54ec71d0607b017d4bd76aae69e3cdec1 (patch)
tree5b2605a2aebcf7289d688ff7bec0d74134d36195
parent1b5145cdb6518875a2dbd3f59327388ace36c07c (diff)
get rid of DDB_ACTION_CALLBACK macro
-rw-r--r--deadbeef.h1
-rw-r--r--plugins/converter/convgui.c2
-rw-r--r--plugins/lastfm/lastfm.c6
3 files changed, 4 insertions, 5 deletions
diff --git a/deadbeef.h b/deadbeef.h
index bde793ab..8444b596 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -844,7 +844,6 @@ enum {
struct DB_plugin_action_s;
typedef int (*DB_plugin_action_callback_t) (struct DB_plugin_action_s *action, int ctx);
-#define DDB_ACTION_CALLBACK(x)((int (*)(struct DB_plugin_action_s *action, int ctx))x)
typedef struct DB_plugin_action_s {
const char *title;
diff --git a/plugins/converter/convgui.c b/plugins/converter/convgui.c
index 302c31fb..b44a1c1e 100644
--- a/plugins/converter/convgui.c
+++ b/plugins/converter/convgui.c
@@ -1432,7 +1432,7 @@ static DB_plugin_action_t convert_action = {
.title = "Convert",
.name = "convert",
.flags = DB_ACTION_MULTIPLE_TRACKS | DB_ACTION_SINGLE_TRACK,
- .callback = DDB_ACTION_CALLBACK(converter_show),
+ .callback = converter_show,
.next = NULL
};
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c
index 339587dd..c5c9c313 100644
--- a/plugins/lastfm/lastfm.c
+++ b/plugins/lastfm/lastfm.c
@@ -935,7 +935,7 @@ out:
}
static int
-lfm_action_love (DB_plugin_action_t *act, DB_playItem_t *it)
+lfm_action_love (DB_plugin_action_t *act, int ctx)
{
printf ("Love starts here\n");
return 0;
@@ -945,7 +945,7 @@ static DB_plugin_action_t love_action = {
.title = "Love at Last.fm",
.name = "lfm_love",
.flags = DB_ACTION_SINGLE_TRACK,
- .callback = DDB_ACTION_CALLBACK(lfm_action_love),
+ .callback = lfm_action_love,
.next = NULL
};
@@ -953,7 +953,7 @@ static DB_plugin_action_t lookup_action = {
.title = "Lookup on Last.fm",
.name = "lfm_lookup",
.flags = DB_ACTION_SINGLE_TRACK,
- .callback = DDB_ACTION_CALLBACK (lfm_action_lookup),
+ .callback = lfm_action_lookup,
.next = NULL// &love_action
};