From 7019139979ad8103d1a3fb5893893815de1af4c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Sun, 18 Jan 2026 19:51:53 -0500 Subject: [PATCH] fix: move `app_t` forward declaration to top --- libs_win32/app_types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs_win32/app_types.h b/libs_win32/app_types.h index 80dfc8a..95db9a2 100644 --- a/libs_win32/app_types.h +++ b/libs_win32/app_types.h @@ -10,6 +10,8 @@ #define APP_U64 unsigned long long #endif #include "app_opengl.h" + +typedef struct app_t app_t; typedef enum app_log_level_t { APP_LOG_LEVEL_INFO, APP_LOG_LEVEL_WARNING, @@ -642,6 +644,5 @@ struct app_t { int pointer_y; }; #endif -typedef struct app_t app_t; #endif \ No newline at end of file