Added garglk.c and garglk.h, which is where stubs for Gargoyle's Glk API extensions...
authorfliep <fliep@ddfedd41-794f-dd11-ae45-00112f111e67>
Tue, 9 Jun 2009 21:48:39 +0000 (21:48 +0000)
committerfliep <fliep@ddfedd41-794f-dd11-ae45-00112f111e67>
Tue, 9 Jun 2009 21:48:39 +0000 (21:48 +0000)
interpreters/frotz/Makefile.am
libchimara/garglk.c [new file with mode: 0644]
libchimara/garglk.h [new file with mode: 0644]

index 34bcfa443a1fe1a18b60cbcc5964e451aba1cb34..9a1008ad2a95f692e891213eeba6d59043422acb 100644 (file)
@@ -1,4 +1,4 @@
-PLUGIN_LIBTOOL_FLAGS=-module -avoid-version -export-symbols-regex "^glk_main$$"
+PLUGIN_LIBTOOL_FLAGS=-module -avoid-version -export-symbols-regex "^glk"
 
 pkglib_LTLIBRARIES = frotz.la
 frotz_la_SOURCES = buffer.c err.c fastmem.c files.c input.c main.c math.c \
@@ -8,4 +8,3 @@ frotz_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
 
 frotzdocdir = $(datadir)/doc/$(PACKAGE)/frotz
 dist_frotzdoc_DATA = AUTHORS COPYING README TODO
-
diff --git a/libchimara/garglk.c b/libchimara/garglk.c
new file mode 100644 (file)
index 0000000..4708174
--- /dev/null
@@ -0,0 +1,6 @@
+#include <libchimara/glk.h>
+
+void 
+garglk_set_reversevideo(glui32 reverse)
+{
+}
diff --git a/libchimara/garglk.h b/libchimara/garglk.h
new file mode 100644 (file)
index 0000000..e5234b7
--- /dev/null
@@ -0,0 +1,6 @@
+#ifndef __GARGLK_H__
+#define __GARGLK_H__
+
+extern void garglk_set_reversevideo(glui32 reverse);
+
+#endif /* __GARGLK_H__ */
\ No newline at end of file