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

« back to all changes in this revision

Viewing changes to src/settings.h

  • Committer: Package Import Robot
  • Author(s): Luke Faraone
  • Date: 2012-05-06 14:24:34 UTC
  • mfrom: (1.3.9)
  • Revision ID: package-import@ubuntu.com-20120506142434-74kwucnyp97msxdi
Tags: 2012.05.06-1
* New upstream version.
  - JSON api support (closes: #670483, LP: #988395)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
Copyright (c) 2008-2011
 
2
Copyright (c) 2008-2012
3
3
        Lars-Dominik Braun <lars@6xq.net>
4
4
 
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
24
24
#ifndef _SETTINGS_H
25
25
#define _SETTINGS_H
26
26
 
 
27
#include <stdbool.h>
 
28
 
27
29
#include <piano.h>
28
30
#include <waitress.h>
29
31
 
78
80
} BarMsgFormatStr_t;
79
81
 
80
82
typedef struct {
 
83
        bool autoselect;
81
84
        unsigned int history;
82
85
        int volume;
83
86
        BarStationSorting_t sortOrder;
95
98
        char *npStationFormat;
96
99
        char *listSongFormat;
97
100
        char *fifo;
 
101
        char *partnerUser, *partnerPassword, *device, *inkey, *outkey;
98
102
        char tlsFingerprint[20];
99
103
        char keys[BAR_KS_COUNT];
100
104
        BarMsgFormatStr_t msgFormat[MSG_COUNT];