aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/advsys/glk_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/advsys/glk_interface.h')
-rw-r--r--engines/glk/advsys/glk_interface.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/engines/glk/advsys/glk_interface.h b/engines/glk/advsys/glk_interface.h
index b54a35b250..b316f1f84f 100644
--- a/engines/glk/advsys/glk_interface.h
+++ b/engines/glk/advsys/glk_interface.h
@@ -33,18 +33,25 @@ namespace AdvSys {
* input and output
*/
class GlkInterface : public GlkAPI {
+private:
+ winid_t _window;
protected:
/**
+ * GLK initialization
+ */
+ bool initialize();
+
+ /**
* Print a string
- * @param offset String offset
+ * @param msg String
*/
- void printString(int offset);
+ void print(const Common::String &msg);
/**
* Print a number
- * @param number Number to print
+ * @param number Number to print
*/
- void printNumber(int number);
+ void print(int number);
public:
/**
* Constructor