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