summaryrefslogtreecommitdiff
path: root/libpiano/src/piano.h
diff options
context:
space:
mode:
authorLars-Dominik Braun <PromyLOPh@gmail.com>2008-07-02 20:46:38 +0200
committerLars-Dominik Braun <PromyLOPh@gmail.com>2008-07-02 20:46:38 +0200
commita711635a5a031107da3ecc0b0e1c939277e34572 (patch)
treec4f607888402c8d9d62640ab1e47c087fd3f1797 /libpiano/src/piano.h
parente3c2af78adaef60de935883bac1155b0e75d4ae1 (diff)
downloadpianobar-a711635a5a031107da3ecc0b0e1c939277e34572.tar.gz
pianobar-a711635a5a031107da3ecc0b0e1c939277e34572.tar.bz2
pianobar-a711635a5a031107da3ecc0b0e1c939277e34572.zip
client: Initial quickmix station selection support
Diffstat (limited to 'libpiano/src/piano.h')
-rw-r--r--libpiano/src/piano.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libpiano/src/piano.h b/libpiano/src/piano.h
index 121f0db..93c9fc1 100644
--- a/libpiano/src/piano.h
+++ b/libpiano/src/piano.h
@@ -23,7 +23,7 @@ THE SOFTWARE.
#ifndef _PIANO_H
#define _PIANO_H
-/* this is our public API; don't expect this api to be stable, as long
+/* this is our public API; don't expect this api to be stable as long as
* pandora does not provide a stable api
* all strings _must_ be utf-8 encoded. i won't care, but pandora does. so
* be nice and check the encoding of your strings. thanks :) */
@@ -61,7 +61,8 @@ struct PianoStation {
/* disabled: isNew */
/* disabled: transformType */
//char *idToken;
- //char isQuickMix;
+ char isQuickMix;
+ char useQuickMix; /* station will be included in quickmix */
char *name;
char *id;
struct PianoStation *next;
@@ -167,5 +168,6 @@ PianoReturn_t PianoCreateStation (PianoHandle_t *ph, char *musicId);
PianoReturn_t PianoStationAddMusic (PianoHandle_t *ph,
PianoStation_t *station, char *musicId);
PianoReturn_t PianoSongTired (PianoHandle_t *ph, PianoSong_t *song);
+PianoReturn_t PianoSetQuickmix (PianoHandle_t *ph);
#endif /* _PIANO_H */