From 4f43140468cefba39573d1efbded5258fcc56c93 Mon Sep 17 00:00:00 2001 From: Michał Cichoń Date: Tue, 25 Aug 2015 06:47:41 +0200 Subject: 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 --- src/main.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main.h') diff --git a/src/main.h b/src/main.h index c8134ae..41413d9 100644 --- a/src/main.h +++ b/src/main.h @@ -28,21 +28,21 @@ THE SOFTWARE. #include -#include "player.h" +#include "player2.h" #include "settings.h" #include "ui_readline.h" typedef struct { PianoHandle_t ph; CURL *http; - player_t player; + player2_t player; BarSettings_t settings; /* first item is current song */ PianoSong_t *playlist; PianoSong_t *songHistory; PianoStation_t *curStation; char doQuit; - BarReadlineFds_t input; + BarReadline_t rl; unsigned int playerErrors; } BarApp_t; -- cgit v1.2.3