aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/processor.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-16 21:53:59 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commite344809eeac75e9dbfd943015c083001a2628440 (patch)
tree9edc79afeaa76cd1138cb315bacc3e1fe04ce794 /engines/glk/frotz/processor.h
parentbc4df65bd7b81dc5cec98f6681e9d83f7c22dc8e (diff)
downloadscummvm-rg350-e344809eeac75e9dbfd943015c083001a2628440.tar.gz
scummvm-rg350-e344809eeac75e9dbfd943015c083001a2628440.tar.bz2
scummvm-rg350-e344809eeac75e9dbfd943015c083001a2628440.zip
GLK: FROTZ: Fix gcc warnings, adding extra method comments
Diffstat (limited to 'engines/glk/frotz/processor.h')
-rw-r--r--engines/glk/frotz/processor.h25
1 files changed, 23 insertions, 2 deletions
diff --git a/engines/glk/frotz/processor.h b/engines/glk/frotz/processor.h
index 7c8944f451..5f61a2e658 100644
--- a/engines/glk/frotz/processor.h
+++ b/engines/glk/frotz/processor.h
@@ -314,11 +314,32 @@ private:
* @{
*/
+ /**
+ * Start printing a so-called debugging message. The contents of the
+ * message are passed to the message stream, a Frotz specific output
+ * stream with maximum priority.
+ */
+ void screen_mssg_on();
+
+ /**
+ * Stop printing a "debugging" message
+ */
+ void screen_mssg_off();
+
+ /**
+ * Display a single character on the screen.
+ */
void screen_char(zchar c);
+
+ /**
+ * Print a newline to the screen.
+ */
void screen_new_line();
+
+ /**
+ * Print a newline to the screen.
+ */
void screen_word(const zchar *s);
- void screen_mssg_on();
- void screen_mssg_off();
/**@}*/