Dalamud/imgui/Dalamud.Bindings.ImGui/Custom/Generated/ImGuiTextRange.gen.cs
Soreepeong 51a20300d8 wip2
2025-07-22 02:10:46 +09:00

47 lines
1,012 B
C#

// <auto-generated/>
using HexaGen.Runtime;
using System;
using System.Diagnostics;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Dalamud.Bindings.ImGui;
public unsafe partial struct ImGuiTextRange
{
public unsafe void Destroy()
{
fixed (ImGuiTextRange* @this = &this)
{
ImGuiNative.Destroy(@this);
}
}
public unsafe bool empty()
{
fixed (ImGuiTextRange* @this = &this)
{
byte ret = ImGuiNative.empty(@this);
return ret != 0;
}
}
public unsafe void split(byte separator, ImVector<ImGuiTextRange>* output)
{
fixed (ImGuiTextRange* @this = &this)
{
ImGuiNative.split(@this, separator, output);
}
}
public unsafe void split(byte separator, ref ImVector<ImGuiTextRange> output)
{
fixed (ImGuiTextRange* @this = &this)
{
fixed (ImVector<ImGuiTextRange>* poutput = &output)
{
ImGuiNative.split(@this, separator, (ImVector<ImGuiTextRange>*)poutput);
}
}
}
}