summaryrefslogtreecommitdiff
path: root/atari
diff options
context:
space:
mode:
Diffstat (limited to 'atari')
-rw-r--r--atari/gui.c7
-rwxr-xr-xatari/gui.h6
2 files changed, 7 insertions, 6 deletions
diff --git a/atari/gui.c b/atari/gui.c
index 6a68b8250..279102d7c 100644
--- a/atari/gui.c
+++ b/atari/gui.c
@@ -356,12 +356,7 @@ static void gui_window_set_title(struct gui_window *gw, const char *title)
}
}
-/**
- * Set the status bar of a browser window.
- *
- * \param w gui_window to update
- * \param text new status text
- */
+/* exported interface documented in atari/gui.h */
void gui_window_set_status(struct gui_window *w, const char *text)
{
int l;
diff --git a/atari/gui.h b/atari/gui.h
index 68a416e0f..bbe129b7a 100755
--- a/atari/gui.h
+++ b/atari/gui.h
@@ -164,6 +164,12 @@ struct gui_window *gui_get_input_window(void);
char *gui_window_get_url(struct gui_window *gw);
char *gui_window_get_title(struct gui_window *gw);
+/**
+ * Set the status bar of a browser window.
+ *
+ * \param w The gui_window to update.
+ * \param text new status text
+ */
void gui_window_set_status(struct gui_window *w, const char *text);
void gui_window_set_pointer(struct gui_window *gw, gui_pointer_shape shape);
void gui_window_destroy(struct gui_window *w);