From e39e9b5bf1fb28f321b01fa427e2a7c206195b2c Mon Sep 17 00:00:00 2001 From: Marc Sunet Date: Fri, 21 Nov 2025 10:58:06 -0800 Subject: Tidy --- app/include/dxwindow.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app/include/dxwindow.h') diff --git a/app/include/dxwindow.h b/app/include/dxwindow.h index 7e5a373..14caa36 100644 --- a/app/include/dxwindow.h +++ b/app/include/dxwindow.h @@ -21,8 +21,17 @@ void window_global_quit(); /// Return the last Window error. const char* window_get_error(); +/// Initialize the window. Window* window_init(int width, int height, const char* title); + +/// Destroy the window. void window_destroy(Window**); + +/// Return the Windows handle. HWND window_handle(Window*); + +/// Update the window, poll for events. void window_update(Window*); + +/// Return whether the user has requested that the window should be closed. bool window_should_close(const Window*); -- cgit v1.2.3