diff options
Diffstat (limited to 'src/libpiano/piano.h')
-rw-r--r-- | src/libpiano/piano.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libpiano/piano.h b/src/libpiano/piano.h index 7267901..d953dec 100644 --- a/src/libpiano/piano.h +++ b/src/libpiano/piano.h @@ -24,6 +24,8 @@ THE SOFTWARE. #ifndef _PIANO_H #define _PIANO_H +#include <stdbool.h> + /* 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 @@ -152,6 +154,7 @@ typedef enum { typedef struct PianoRequest { PianoRequestType_t type; + bool secure; void *data; char urlPath[1024]; char *postData; |