summaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2003-12-22 00:01:31 +0000
committerIan C <ianc@noddybox.co.uk>2003-12-22 00:01:31 +0000
commita500f050272a8cca97ed0bbb7f8d7156555c61a7 (patch)
tree879d83916f2dae38e3574c4937098e40ae27bdb0 /src/gui.h
parent9443eab98692b668fd35fc2a7e2cfb043953dbc7 (diff)
Added memory menu and some devel changes
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/gui.h b/src/gui.h
index 02a5db5..4f03394 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -33,10 +33,15 @@
/* ---------------------------------------- INTERFACES
*/
-/* Display a simple message box. A message of longer than 256 bytes causes
+/* Display a simple message box. A message of longer than 1024 bytes causes
undefined behaviour. Newlines cause a line break.
*/
-void GUIMessage(const char *title, const char *format,...);
+void GUIMessage(const char *title, const char *format,...);
+
+
+/* Enter a string, max 40 characters
+*/
+const char *GUIInputString(const char *prompt, const char *orig);
#endif