summaryrefslogtreecommitdiff
path: root/deadbeef.h
diff options
context:
space:
mode:
authorGravatar Viktor Semykin <thesame.ml@gmail.com>2010-07-04 19:11:26 +0300
committerGravatar Viktor Semykin <thesame.ml@gmail.com>2010-07-04 19:15:28 +0300
commitc6ef716dbefff585d97c9f24844186c2cd010d18 (patch)
tree5dae796860ae51efdc392d038cca0dbf513a5410 /deadbeef.h
parent5e64ac2297992c8cfe35233fc93585f7066a6faa (diff)
added some comments
Diffstat (limited to 'deadbeef.h')
-rw-r--r--deadbeef.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/deadbeef.h b/deadbeef.h
index 21249561..b79d7108 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -536,14 +536,13 @@ typedef struct DB_plugin_action_s {
uint32_t flags;
/**
* Function called when user activates menu item
- * @it - pointer to selected playitem for single-track action,
+ * @action pointer to action struct itself
+ * @it pointer to selected playitem for single-track action,
* to first playitem for multiple-track action,
* or NULL for common action
- * @data - opaque pointer
+ * @returns unused
*/
-// int (*callback) (DB_playItem_t *it, void *data);
int (*callback) (struct DB_plugin_action_s *action, DB_playItem_t *it);
-// void *data;
//we have linked list here
struct DB_plugin_action_s *next;