Work on manual bindings

This commit is contained in:
Soreepeong 2025-07-23 01:18:48 +09:00
parent f391ac57d3
commit 3381ac1c7d
37 changed files with 2596 additions and 48072 deletions

View file

@ -0,0 +1,15 @@
namespace Dalamud.Bindings.ImGui;
public unsafe partial struct ImGuiTextBuffer
{
public void append(Utf8Buffer str)
{
fixed (ImGuiTextBuffer* thisPtr = &this)
ImGui.append(thisPtr, str);
}
}
public partial struct ImGuiTextBufferPtr
{
public void append(Utf8Buffer str) => ImGui.append(this, str);
}