summaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
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