aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan3/glkio.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/alan3/glkio.h')
-rw-r--r--engines/glk/alan3/glkio.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/glk/alan3/glkio.h b/engines/glk/alan3/glkio.h
index b77e659cc5..32ce758d01 100644
--- a/engines/glk/alan3/glkio.h
+++ b/engines/glk/alan3/glkio.h
@@ -23,8 +23,6 @@
#ifndef GLK_ALAN3_GLKIO
#define GLK_ALAN3_GLKIO
-/* Header file for Glk output for Alan interpreter */
-
#include "glk/alan3/alan3.h"
#include "glk/windows.h"
@@ -34,12 +32,16 @@ namespace Alan3 {
extern winid_t glkMainWin;
extern winid_t glkStatusWin;
-/* NB: this header must be included in any file which calls printf() */
-
#undef printf
#define printf glkio_printf
extern void glkio_printf(const char *, ...);
+extern void showImage(int image, int align);
+
+extern void playSound(int sound);
+
+extern void setStyle(int style);
+
} // End of namespace Alan3
} // End of namespace Glk