git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@158
ddfedd41-794f-dd11-ae45-
00112f111e67
glk.c glk.h \
glkstart.h \
glkunix.c glkunix.h \
- hyperlink.c \
+ hyperlink.c hyperlink.h \
image.c \
init.c init.h \
input.c input.h \
--- /dev/null
+#ifndef HYPERLINK_H
+#define HYPERLINK_H
+
+#include <glib.h>
+#include <gtk/gtk.h>
+
+#include "glk.h"
+#include "window.h"
+#include "event.h"
+
+G_GNUC_INTERNAL gboolean on_window_button_release_event(GtkWidget *widget, GdkEventButton *event, winid_t win);
+
+#endif