mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 03:19:19 +01:00
16 lines
458 B
C#
16 lines
458 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImGuiInputTextCallbackData
|
|
{
|
|
public void InsertChars(int pos, AutoUtf8Buffer text)
|
|
{
|
|
fixed (ImGuiInputTextCallbackData* thisPtr = &this) ImGui.InsertChars(thisPtr, pos, text);
|
|
}
|
|
}
|
|
|
|
public partial struct ImGuiInputTextCallbackDataPtr
|
|
{
|
|
public void InsertChars(int pos, AutoUtf8Buffer text) => ImGui.InsertChars(this, pos, text);
|
|
}
|