// 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 ImGuiPayload { public unsafe void Clear() { fixed (ImGuiPayload* @this = &this) { ImGuiNative.Clear(@this); } } public unsafe void Destroy() { fixed (ImGuiPayload* @this = &this) { ImGuiNative.Destroy(@this); } } public unsafe bool IsDelivery() { fixed (ImGuiPayload* @this = &this) { byte ret = ImGuiNative.IsDelivery(@this); return ret != 0; } } public unsafe bool IsPreview() { fixed (ImGuiPayload* @this = &this) { byte ret = ImGuiNative.IsPreview(@this); return ret != 0; } } } // DISCARDED: IsDataType