summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_xmms_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/demux_xmms_plugin.h')
-rw-r--r--libmpdemux/demux_xmms_plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpdemux/demux_xmms_plugin.h b/libmpdemux/demux_xmms_plugin.h
index c2b1b8351c..5aa176f952 100644
--- a/libmpdemux/demux_xmms_plugin.h
+++ b/libmpdemux/demux_xmms_plugin.h
@@ -133,7 +133,7 @@ typedef struct
}
GeneralPlugin;
-typedef struct _VisPlugin
+typedef struct VisPlugin
{
void *handle; /* Filled in by xmms */
char *filename; /* Filled in by xmms */
@@ -145,7 +145,7 @@ typedef struct _VisPlugin
void (*cleanup)(void); /* Called when the plugin is disabled */
void (*about)(void); /* Show the about box */
void (*configure)(void); /* Show the configure box */
- void (*disable_plugin)(struct _VisPlugin *); /* Call this with a pointer to your plugin to disable the plugin */
+ void (*disable_plugin)(struct VisPlugin *); /* Call this with a pointer to your plugin to disable the plugin */
void (*playback_start)(void); /* Called when playback starts */
void (*playback_stop)(void); /* Called when playback stops */
void (*render_pcm)(short pcm_data[2][512]); /* Render the PCM data, don't do anything time consuming in here */