mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-17 05:17:42 +01:00
60 lines
1.1 KiB
C#
Generated
60 lines
1.1 KiB
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 ImGuiTextBuffer
|
|
{
|
|
public unsafe void clear()
|
|
{
|
|
fixed (ImGuiTextBuffer* @this = &this)
|
|
{
|
|
ImGuiNative.clear(@this);
|
|
}
|
|
}
|
|
public unsafe void Destroy()
|
|
{
|
|
fixed (ImGuiTextBuffer* @this = &this)
|
|
{
|
|
ImGuiNative.Destroy(@this);
|
|
}
|
|
}
|
|
public unsafe bool empty()
|
|
{
|
|
fixed (ImGuiTextBuffer* @this = &this)
|
|
{
|
|
byte ret = ImGuiNative.empty(@this);
|
|
return ret != 0;
|
|
}
|
|
}
|
|
public unsafe void reserve(int capacity)
|
|
{
|
|
fixed (ImGuiTextBuffer* @this = &this)
|
|
{
|
|
ImGuiNative.reserve(@this, capacity);
|
|
}
|
|
}
|
|
public unsafe int size()
|
|
{
|
|
fixed (ImGuiTextBuffer* @this = &this)
|
|
{
|
|
int ret = ImGuiNative.size(@this);
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
// DISCARDED: append
|
|
// DISCARDED: appendf
|
|
// DISCARDED: appendfv
|
|
// DISCARDED: begin
|
|
// DISCARDED: beginS
|
|
// DISCARDED: c_str
|
|
// DISCARDED: c_strS
|
|
// DISCARDED: end
|
|
// DISCARDED: endS
|