summaryrefslogtreecommitdiff
path: root/src/dged/window.h
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2024-09-17 08:47:03 +0200
committerAlbert Cervin <albert@acervin.com>2025-11-01 22:11:14 +0100
commit4459b8b3aa9d73895391785a99dcc87134e80601 (patch)
treea5204f447a0b2b05f63504c7fe958ef9bbf1918a /src/dged/window.h
parent4689f3f38277bb64981fc960e8e384e2d065d659 (diff)
downloaddged-4459b8b3aa9d73895391785a99dcc87134e80601.tar.gz
dged-4459b8b3aa9d73895391785a99dcc87134e80601.tar.xz
dged-4459b8b3aa9d73895391785a99dcc87134e80601.zip
More lsp support
This makes the LSP support complete for now: - Completion - Diagnostics - Goto implementation/declaration - Rename - Documentation - Find references
Diffstat (limited to 'src/dged/window.h')
-rw-r--r--src/dged/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dged/window.h b/src/dged/window.h
index 7738e16..d646d78 100644
--- a/src/dged/window.h
+++ b/src/dged/window.h
@@ -27,7 +27,7 @@ void windows_init(uint32_t height, uint32_t width,
void windows_destroy(void);
void windows_resize(uint32_t height, uint32_t width);
-void windows_update(void *(*frame_alloc)(size_t), float frame_time);
+bool windows_update(void *(*frame_alloc)(size_t), float frame_time);
void windows_render(struct display *display);
struct window *root_window(void);