|
|
@ -8,7 +8,6 @@ namespace ImGuiNET |
|
|
|
public unsafe partial struct ImGuiTextBuffer |
|
|
|
public unsafe partial struct ImGuiTextBuffer |
|
|
|
{ |
|
|
|
{ |
|
|
|
public ImVector Buf; |
|
|
|
public ImVector Buf; |
|
|
|
public static char EmptyString_0; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
public unsafe partial struct ImGuiTextBufferPtr |
|
|
|
public unsafe partial struct ImGuiTextBufferPtr |
|
|
|
{ |
|
|
|
{ |
|
|
@ -19,7 +18,6 @@ namespace ImGuiNET |
|
|
|
public static implicit operator ImGuiTextBuffer* (ImGuiTextBufferPtr wrappedPtr) => wrappedPtr.NativePtr; |
|
|
|
public static implicit operator ImGuiTextBuffer* (ImGuiTextBufferPtr wrappedPtr) => wrappedPtr.NativePtr; |
|
|
|
public static implicit operator ImGuiTextBufferPtr(IntPtr nativePtr) => new ImGuiTextBufferPtr(nativePtr); |
|
|
|
public static implicit operator ImGuiTextBufferPtr(IntPtr nativePtr) => new ImGuiTextBufferPtr(nativePtr); |
|
|
|
public ImVector<byte> Buf => new ImVector<byte>(NativePtr->Buf); |
|
|
|
public ImVector<byte> Buf => new ImVector<byte>(NativePtr->Buf); |
|
|
|
public RangeAccessor<static char> EmptyString => new RangeAccessor<static char>(&NativePtr->EmptyString_0, 1); |
|
|
|
|
|
|
|
public void appendf(string fmt) |
|
|
|
public void appendf(string fmt) |
|
|
|
{ |
|
|
|
{ |
|
|
|
byte* native_fmt; |
|
|
|
byte* native_fmt; |
|
|
|