Dalamud/imgui/Dalamud.Bindings.ImGui/Custom/Generated/Generated/Structs/ImGuiTextRange.gen.cs

46 lines
1,011 B
C#
Generated

// <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);
}
}
}
}