Initial commit: Client Doc docs Server Tools

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
ud18010
2026-07-10 10:24:29 +08:00
co-authored by Cursor
commit 7e35d8da31
3374 changed files with 680813 additions and 0 deletions
@@ -0,0 +1,32 @@
using System.Runtime.InteropServices;
namespace XLuaBase
{
public partial class Lua
{
/*
[DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
#if UNITY_IPHONE && !UNITY_EDITOR
public static extern int cxx_luaopen_rapidjson(System.IntPtr L);
public static int luaopen_rapidjson(System.IntPtr L)
{
return cxx_luaopen_rapidjson(L);
}
#else
public static extern int luaopen_rapidjson(System.IntPtr L);
#endif
[DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
#if UNITY_IPHONE && !UNITY_EDITOR
public static extern int cxx_luaopen_md5(System.IntPtr L);
public static int luaopen_md5(System.IntPtr L)
{
return cxx_luaopen_md5(L);
}
#else
public static extern int luaopen_md5(System.IntPtr L);
#endif//*/
}
}