From ff4c59b35dfc57d14c83534e6586017cbed72df4 Mon Sep 17 00:00:00 2001 From: 4z0t Date: Sat, 30 Nov 2024 12:43:50 +0300 Subject: [PATCH] define as gpg::RType --- include/LuaAPI.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/include/LuaAPI.h b/include/LuaAPI.h index de2eed2..3b011ad 100644 --- a/include/LuaAPI.h +++ b/include/LuaAPI.h @@ -176,10 +176,17 @@ namespace lua } // namespace lua // namespace gpg +namespace gpg +{ + struct RType + { + }; + +} class RRef { public: void *d; - void *t; + gpg::RType *t; }; class RType {};