aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutput.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:38:11 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-02 00:05:35 -0700
commit8ae390f65142ed38a0b5e2474fc6a21866092e84 (patch)
treecd044479302be57d4f73683e6844d782d5c836e3 /src/audioOutput.h
parentdd7f8a723efa9c9edce951981aef7f3adf814134 (diff)
downloadmpd-8ae390f65142ed38a0b5e2474fc6a21866092e84.tar.gz
mpd-8ae390f65142ed38a0b5e2474fc6a21866092e84.tar.xz
mpd-8ae390f65142ed38a0b5e2474fc6a21866092e84.zip
tag: renamed MpdTag and MpdTagItem to struct mpd_tag, struct tag_item
Getting rid of CamelCase; not having typedefs also allows us to forward-declare the structures.
Diffstat (limited to '')
-rw-r--r--src/audioOutput.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/audioOutput.h b/src/audioOutput.h
index f82eedfba..4ce67a5de 100644
--- a/src/audioOutput.h
+++ b/src/audioOutput.h
@@ -50,7 +50,7 @@ typedef void (*AudioOutputDropBufferedAudioFunc) (AudioOutput * audioOutput);
typedef void (*AudioOutputCloseDeviceFunc) (AudioOutput * audioOutput);
typedef void (*AudioOutputSendMetadataFunc) (AudioOutput * audioOutput,
- const MpdTag * tag);
+ const struct mpd_tag *tag);
struct _AudioOutput {
int open;
@@ -104,7 +104,8 @@ void dropBufferedAudioOutput(AudioOutput * audioOutput);
void closeAudioOutput(AudioOutput * audioOutput);
void finishAudioOutput(AudioOutput * audioOutput);
int keepAudioOutputAlive(AudioOutput * audioOutput, int ms);
-void sendMetadataToAudioOutput(AudioOutput * audioOutput, const MpdTag * tag);
+void sendMetadataToAudioOutput(AudioOutput * audioOutput,
+ const struct mpd_tag *tag);
void printAllOutputPluginTypes(FILE * fp);