summaryrefslogtreecommitdiffstats
path: root/include/visio.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/visio.h')
-rw-r--r--include/visio.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/visio.h b/include/visio.h
new file mode 100644
index 00000000..2c015155
--- /dev/null
+++ b/include/visio.h
@@ -0,0 +1,25 @@
+// $Id$
+#ifndef _VISIO_H
+#define _VISIO_H
+
+/*
+ * visio.c
+ * High-level virtual screen input output control
+ */
+
+#include "bbs.h"
+#include "ansi.h" // we need it.
+
+// THEME DEFINITION ----------------------------------------------------
+#define VCLR_FOOTER_CAPTION ANSI_COLOR(0;34;46)
+#define VCLR_FOOTER ANSI_COLOR(0;30;47)
+#define VCLR_FOOTER_QUOTE ANSI_COLOR(0;31;47)
+
+// API DEFINITION ----------------------------------------------------
+// int vmsg(char *msg);
+// int vmsgf(const char *fmt,...);
+// int vans(char *prompt); // prompt at bottom and return y/n in lower case.
+// void vs_bar(char *title); e// like stand_title
+void vfooter(const char *caption, const char *prompt);
+
+#endif // _VISIO_H