summaryrefslogtreecommitdiff
path: root/src/console.h
diff options
context:
space:
mode:
authorMichał Cichoń <michcic@gmail.com>2015-12-10 01:34:44 +0100
committerMichał Cichoń <michcic@gmail.com>2015-12-10 01:34:44 +0100
commitacabd52d772e055080c5e58ec08e51a5017e9442 (patch)
tree40e8c06ea77ac61e1c203a0663e1bebc043888a7 /src/console.h
parent81ef4f32ebb07b768a7cc4a8937a624cdcdc6f80 (diff)
parent041a1ef65bdbc23ac6774ef2b06f1fe6ddba5e4d (diff)
downloadpianobar-windows-acabd52d772e055080c5e58ec08e51a5017e9442.tar.gz
pianobar-windows-acabd52d772e055080c5e58ec08e51a5017e9442.tar.bz2
pianobar-windows-acabd52d772e055080c5e58ec08e51a5017e9442.zip
Windows 8+ compatibility and WMF player fixes.
Diffstat (limited to 'src/console.h')
-rw-r--r--src/console.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/console.h b/src/console.h
index 4b3a073..de5d951 100644
--- a/src/console.h
+++ b/src/console.h
@@ -25,7 +25,8 @@ THE SOFTWARE.
#define SRC_CONSOLE_H_WY8F3MNH
#include "config.h"
-
+#include <stdio.h>
+#include <stdarg.h>
#include <windows.h>
void BarConsoleInit ();
@@ -42,4 +43,10 @@ void BarConsoleEraseLine (int mode); // 0 - from cursor, 1 - to cursor, 2 - enti
void BarConsoleSetClipboard (const char*);
+void BarConsoleFlush();
+void BarConsolePutc(char c);
+void BarConsolePuts(const char* c);
+void BarConsolePrint(const char* format, ...);
+void BarConsolePrintV(const char* format, va_list args);
+
#endif /* SRC_CONSOLE_H_WY8F3MNH */