Mercurial > audlegacy
diff audacious/plugin.h @ 1231:502b369314c1 trunk
[svn] - InputPlugin class:
+ get_song_tuple(gchar *filename);
+ set_song_tuple(TitleInput *tuple);
- input_get_song_tuple() utility function to retrieve a songtuple/generic tuple
| author | nenolod |
|---|---|
| date | Wed, 14 Jun 2006 20:49:47 -0700 |
| parents | 69a70ab41ed7 |
| children | 6d9c45d157f9 |
line wrap: on
line diff
--- a/audacious/plugin.h Wed Jun 14 19:03:23 2006 -0700 +++ b/audacious/plugin.h Wed Jun 14 20:49:47 2006 -0700 @@ -32,7 +32,7 @@ #include <glib.h> - +#include "libaudacious/titlestring.h" #define INPUT_PLUGIN(x) ((InputPlugin *)(x)) #define OUTPUT_PLUGIN(x) ((OutputPlugin *)(x)) @@ -152,6 +152,9 @@ void (*file_info_box) (gchar * filename); OutputPlugin *output; + + TitleInput *(*get_song_tuple) (gchar * filename); + void (*set_song_tuple) (TitleInput * tuple); }; struct _GeneralPlugin {
