diff options
author | Lars-Dominik Braun <PromyLOPh@gmail.com> | 2008-06-18 15:03:59 +0200 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@gmail.com> | 2008-06-18 15:03:59 +0200 |
commit | 3e76f37c014f867f3b99e482ecb071884322f5d3 (patch) | |
tree | d87a57b796a398b87a2dc525e9d88754ebaa27a0 /libpiano/src/piano.h | |
parent | de291a1b2290997051c22bef5d2d37714c5bd41f (diff) | |
download | pianobar-3e76f37c014f867f3b99e482ecb071884322f5d3.tar.gz pianobar-3e76f37c014f867f3b99e482ecb071884322f5d3.tar.bz2 pianobar-3e76f37c014f867f3b99e482ecb071884322f5d3.zip |
lib: Fix commit 4c487ec1dbf1be71751f9547ccea6b1faa362191
I forgot to update some headers.
Diffstat (limited to 'libpiano/src/piano.h')
-rw-r--r-- | libpiano/src/piano.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpiano/src/piano.h b/libpiano/src/piano.h index b832b69..bd90c4c 100644 --- a/libpiano/src/piano.h +++ b/libpiano/src/piano.h @@ -152,15 +152,15 @@ void PianoDestroyStations (PianoHandle_t *ph); PianoReturn_t PianoConnect (PianoHandle_t *, char *, char *); PianoReturn_t PianoGetStations (PianoHandle_t *ph); -void PianoGetPlaylist (PianoHandle_t *ph, char *stationId); +PianoReturn_t PianoGetPlaylist (PianoHandle_t *ph, char *stationId); PianoReturn_t PianoRateTrack (PianoHandle_t *ph, PianoStation_t *station, PianoSong_t *song, PianoSongRating_t rating); PianoReturn_t PianoRenameStation (PianoHandle_t *ph, PianoStation_t *station, char *newName); PianoReturn_t PianoDeleteStation (PianoHandle_t *ph, PianoStation_t *station); -void PianoSearchMusic (PianoHandle_t *ph, char *searchStr, +PianoReturn_t PianoSearchMusic (PianoHandle_t *ph, char *searchStr, PianoSearchResult_t *searchResult); -void PianoCreateStation (PianoHandle_t *ph, char *musicId); +PianoReturn_t PianoCreateStation (PianoHandle_t *ph, char *musicId); #endif /* _PIANO_H */ |