aboutsummaryrefslogtreecommitdiffstats
path: root/window-xlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'window-xlib.h')
-rw-r--r--window-xlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/window-xlib.h b/window-xlib.h
index 703ec9d..df5eabb 100644
--- a/window-xlib.h
+++ b/window-xlib.h
@@ -13,6 +13,7 @@ enum runes_atoms {
RUNES_ATOM_UTF8_STRING,
RUNES_ATOM_WM_PROTOCOLS,
RUNES_ATOM_RUNES_FLUSH,
+ RUNES_ATOM_RUNES_VISUAL_BELL,
RUNES_NUM_ATOMS
};
@@ -32,12 +33,12 @@ typedef struct {
void runes_window_backend_create_window(RunesTerm *t, int argc, char *argv[]);
void runes_window_backend_start_loop(RunesTerm *t);
void runes_window_backend_request_flush(RunesTerm *t);
+void runes_window_backend_request_visual_bell(RunesTerm *t);
void runes_window_backend_request_close(RunesTerm *t);
void runes_window_backend_get_size(RunesTerm *t, int *xpixel, int *ypixel);
void runes_window_backend_set_icon_name(RunesTerm *t, char *name, size_t len);
void runes_window_backend_set_window_title(
RunesTerm *t, char *name, size_t len);
-void runes_window_backend_visual_bell(RunesTerm *t);
void runes_window_backend_cleanup(RunesTerm *t);
#endif