summaryrefslogtreecommitdiffstats
path: root/sail/display.h
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-03-15 00:50:47 +0000
committerdholland <dholland@NetBSD.org>2009-03-15 00:50:47 +0000
commit89a2669a8a8be664d488ac22db57f6c9f9f2b8ec (patch)
treeb9226c46f50e7ea70b0e2236746c3746690625e2 /sail/display.h
parent68d4fdd27d94764d7e4f1a1e40f9ada5f69d0fbd (diff)
downloadbsdgames-darwin-89a2669a8a8be664d488ac22db57f6c9f9f2b8ec.tar.gz
bsdgames-darwin-89a2669a8a8be664d488ac22db57f6c9f9f2b8ec.zip
Move newturn() from pl_7 to pl_2.
pl_7 was mostly curses/display stuff, is going to be all display stuff. pl_2 is where the main loop lives.
Diffstat (limited to 'sail/display.h')
-rw-r--r--sail/display.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sail/display.h b/sail/display.h
index 98995609..bcd58b95 100644
--- a/sail/display.h
+++ b/sail/display.h
@@ -1,4 +1,4 @@
-/* $NetBSD: display.h,v 1.5 2009/03/15 00:35:42 dholland Exp $ */
+/* $NetBSD: display.h,v 1.6 2009/03/15 00:50:47 dholland Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -29,6 +29,12 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <stdbool.h>
+
void display_show_obp(int which, bool show);
void display_show_dbp(int which, bool show);
void display_refresh_slot_w(void);
+
+void display_hide_prompt(void);
+void display_reshow_prompt(void);
+void display_adjust_view(void);