From 641d92515e5536a9ad9a0008dac9bc1a0b3ed648 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Wed, 11 Jun 2025 09:45:23 +0800 Subject: [PATCH] move VoidCallback typedef to APIBoundaryTypes (now used outside the render thread header for texture upload callbacks) --- thermion_dart/native/include/c_api/APIBoundaryTypes.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/thermion_dart/native/include/c_api/APIBoundaryTypes.h b/thermion_dart/native/include/c_api/APIBoundaryTypes.h index 6ada7065..43e4174e 100644 --- a/thermion_dart/native/include/c_api/APIBoundaryTypes.h +++ b/thermion_dart/native/include/c_api/APIBoundaryTypes.h @@ -9,6 +9,8 @@ extern "C" #include #include "APIExport.h" + + typedef void (*VoidCallback)(int32_t requestId); typedef int32_t EntityId; typedef struct TCamera TCamera;