// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// ------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
///
/// To be documented.
///
[StructLayout(LayoutKind.Sequential)]
public partial struct StbttPackContext
{
}
///
/// To be documented.
///
#if NET5_0_OR_GREATER
[DebuggerDisplay("{DebuggerDisplay,nq}")]
#endif
public unsafe struct StbttPackContextPtr : IEquatable
{
public StbttPackContextPtr(StbttPackContext* handle) { Handle = handle; }
public StbttPackContext* Handle;
public bool IsNull => Handle == null;
public static StbttPackContextPtr Null => new StbttPackContextPtr(null);
public StbttPackContext this[int index] { get => Handle[index]; set => Handle[index] = value; }
public static implicit operator StbttPackContextPtr(StbttPackContext* handle) => new StbttPackContextPtr(handle);
public static implicit operator StbttPackContext*(StbttPackContextPtr handle) => handle.Handle;
public static bool operator ==(StbttPackContextPtr left, StbttPackContextPtr right) => left.Handle == right.Handle;
public static bool operator !=(StbttPackContextPtr left, StbttPackContextPtr right) => left.Handle != right.Handle;
public static bool operator ==(StbttPackContextPtr left, StbttPackContext* right) => left.Handle == right;
public static bool operator !=(StbttPackContextPtr left, StbttPackContext* right) => left.Handle != right;
public bool Equals(StbttPackContextPtr other) => Handle == other.Handle;
///
public override bool Equals(object obj) => obj is StbttPackContextPtr handle && Equals(handle);
///
public override int GetHashCode() => ((nuint)Handle).GetHashCode();
#if NET5_0_OR_GREATER
private string DebuggerDisplay => string.Format("StbttPackContextPtr [0x{0}]", ((nuint)Handle).ToString("X"));
#endif
}
}