From: Philip Chimento Date: Sun, 24 May 2009 10:34:37 +0000 (+0000) Subject: Added dummy functions glk_style_distinguish() and glk_request_mouse_event() X-Git-Url: https://git.stderr.nl/gitweb?p=rodin%2Fchimara.git;a=commitdiff_plain;h=e26270c20acfd9df67b82af594d96536cb6d202f Added dummy functions glk_style_distinguish() and glk_request_mouse_event() git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@84 ddfedd41-794f-dd11-ae45-00112f111e67 --- diff --git a/libchimara/Makefile.am b/libchimara/Makefile.am index 63af53e..87f0498 100644 --- a/libchimara/Makefile.am +++ b/libchimara/Makefile.am @@ -14,6 +14,7 @@ libchimara_la_SOURCES = \ gestalt.c \ glk.c glk.h \ magic.c magic.h \ + mouse.c \ input.c input.h \ stream.c stream.h \ strio.c \ diff --git a/libchimara/mouse.c b/libchimara/mouse.c new file mode 100644 index 0000000..7025e33 --- /dev/null +++ b/libchimara/mouse.c @@ -0,0 +1,6 @@ +#include + +void +glk_request_mouse_event(winid_t win) +{ +} diff --git a/libchimara/style.c b/libchimara/style.c index 3219d26..c3a8e43 100644 --- a/libchimara/style.c +++ b/libchimara/style.c @@ -199,4 +199,10 @@ glk_stylehint_set(glui32 wintype, glui32 style, glui32 hint, glsi32 val) void glk_stylehint_clear(glui32 wintype, glui32 styl, glui32 hint) { -} \ No newline at end of file +} + +glui32 +glk_style_distinguish(winid_t win, glui32 styl1, glui32 styl2) +{ + return styl1 != styl2; +}