diff options
Diffstat (limited to 'libpiano')
| -rw-r--r-- | libpiano/src/piano.c | 9 | 
1 files changed, 0 insertions, 9 deletions
| diff --git a/libpiano/src/piano.c b/libpiano/src/piano.c index c51b7ff..fafac25 100644 --- a/libpiano/src/piano.c +++ b/libpiano/src/piano.c @@ -182,8 +182,6 @@ void PianoDestroy (PianoHandle_t *ph) {   *	@param piano handle   *	@param username (utf-8 encoded)   *	@param password (plaintext, utf-8 encoded) - *	@param use ssl when logging in (1 = on, 0 = off), note that the password - *			is not hashed and will be sent as plain-text!   */  PianoReturn_t PianoConnect (PianoHandle_t *ph, const char *user,  		const char *password) { @@ -389,7 +387,6 @@ static PianoReturn_t PianoAddFeedback (PianoHandle_t *ph, const char *stationId,   *	@param piano handle   *	@param change this stations name   *	@param new name - *	@return   */  PianoReturn_t PianoRenameStation (PianoHandle_t *ph, PianoStation_t *station,  		const char *newName) { @@ -556,7 +553,6 @@ PianoReturn_t PianoCreateStation (PianoHandle_t *ph, const char *type,  /*	add more music to existing station; multithreaded apps beware! this alters   *	station data, don't forget to lock the station pointer you passed to this   *	function - *	@public yes   *	@param piano handle   *	@param add music to this station   *	@param music id; can be obtained with PianoSearchMusic () @@ -591,7 +587,6 @@ PianoReturn_t PianoStationAddMusic (PianoHandle_t *ph,  /*	ban a song temporary (for one month)   *	@param piano handle   *	@param song to be banned - *	@return _OK or error   */  PianoReturn_t PianoSongTired (PianoHandle_t *ph, const PianoSong_t *song) {  	char xmlSendBuf[PIANO_SEND_BUFFER_SIZE], *retStr; @@ -620,7 +615,6 @@ PianoReturn_t PianoSongTired (PianoHandle_t *ph, const PianoSong_t *song) {  /*	set stations use by quickmix   *	@param piano handle - *	@return _OK or error   */  PianoReturn_t PianoSetQuickmix (PianoHandle_t *ph) {  	char xmlSendBuf[PIANO_SEND_BUFFER_SIZE], valueBuf[1000], urlArgBuf[1000], @@ -691,7 +685,6 @@ PianoStation_t *PianoFindStationById (PianoStation_t *stations,  /*	receive genre stations   *	@param piano handle - *	@return _OK or error   */  PianoReturn_t PianoGetGenreStations (PianoHandle_t *ph) {  	char *retStr; @@ -713,7 +706,6 @@ PianoReturn_t PianoGetGenreStations (PianoHandle_t *ph) {   *	stations   *	@param piano handle   *	@param station to transform - *	@return _OK or error   */  PianoReturn_t PianoTransformShared (PianoHandle_t *ph,  		PianoStation_t *station) { @@ -750,7 +742,6 @@ PianoReturn_t PianoTransformShared (PianoHandle_t *ph,   *	@param piano handle   *	@param song (from playlist)   *	@param return allocated string; you have to free it yourself - *	@return _OK or error   */  PianoReturn_t PianoExplain (PianoHandle_t *ph, const PianoSong_t *song,  		char **retExplain) { | 
