~ubuntu-branches/ubuntu/wily/pianobar/wily-proposed

« back to all changes in this revision

Viewing changes to src/libpiano/piano.h

  • Committer: Package Import Robot
  • Author(s): Luke Faraone
  • Date: 2012-03-10 04:55:05 UTC
  • mfrom: (1.3.8)
  • Revision ID: package-import@ubuntu.com-20120310045505-cz2aqq552pbjp8o5
Tags: 2012.01.10-1
* New upstream version. (closes: #655744)
* Update debian/watch to point to new download URL.
* Review and update debian/copyright.
* Compy with standards version 3.9.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef _PIANO_H
25
25
#define _PIANO_H
26
26
 
 
27
#include <stdbool.h>
 
28
 
27
29
/* this is our public API; don't expect this api to be stable as long as
28
30
 * pandora does not provide a stable api
29
31
 * all strings _must_ be utf-8 encoded. i won't care, but pandora does. so
152
154
 
153
155
typedef struct PianoRequest {
154
156
        PianoRequestType_t type;
 
157
        bool secure;
155
158
        void *data;
156
159
        char urlPath[1024];
157
160
        char *postData;