summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorMichał Cichoń <michcic@gmail.com>2015-08-25 06:47:41 +0200
committerMichał Cichoń <michcic@gmail.com>2015-08-25 06:47:41 +0200
commit4f43140468cefba39573d1efbded5258fcc56c93 (patch)
tree7aa850b6252c1773ba33e9efa985f712709ea5af /src/settings.h
parenta3bae55d41f5159df3a0125f02a8fa322e81bbe3 (diff)
downloadpianobar-windows-4f43140468cefba39573d1efbded5258fcc56c93.tar.gz
pianobar-windows-4f43140468cefba39573d1efbded5258fcc56c93.tar.bz2
pianobar-windows-4f43140468cefba39573d1efbded5258fcc56c93.zip
Port pianobar to Windows:
- use newly introduced console.h instead of terminal.h which emulate some behavior of VT terminals - replace ffmpeg/libov player with more abstract one with DirectShow implementation
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/settings.h b/src/settings.h
index d35a64c..d0fdbfa 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -28,6 +28,8 @@ THE SOFTWARE.
#include <piano.h>
+#include "ui_types.h"
+
/* update structure in ui_dispatch.h if you add shortcuts here */
typedef enum {
BAR_KS_HELP = 0,
@@ -76,8 +78,6 @@ typedef enum {
BAR_SORT_COUNT = 6,
} BarStationSorting_t;
-#include "ui_types.h"
-
typedef struct {
char *prefix;
char *postfix;
@@ -107,8 +107,6 @@ typedef struct {
BarMsgFormatStr_t msgFormat[MSG_COUNT];
} BarSettings_t;
-#include <piano.h>
-
void BarSettingsInit (BarSettings_t *);
void BarSettingsDestroy (BarSettings_t *);
void BarSettingsRead (BarSettings_t *);