summaryrefslogtreecommitdiff
path: root/src/console.h
diff options
context:
space:
mode:
authorMichał Cichoń <michcic@gmail.com>2015-12-10 11:57:00 +0100
committerMichał Cichoń <michcic@gmail.com>2015-12-10 11:57:00 +0100
commit6dee813dad2dd0b741025be046dfe3c7019bddb9 (patch)
treee075e6f55aea250f5ca1bb628a15327f52f3789e /src/console.h
parent13e06e633d966a7600794deb43d725cbd89e108c (diff)
parent754a62188d0fa2bc29c7089a6beccea9622c9911 (diff)
downloadpianobar-windows-6dee813dad2dd0b741025be046dfe3c7019bddb9.tar.gz
pianobar-windows-6dee813dad2dd0b741025be046dfe3c7019bddb9.tar.bz2
pianobar-windows-6dee813dad2dd0b741025be046dfe3c7019bddb9.zip
Merge branch 'release/2015.12.10'2015.12.10
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 */