mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-11 01:37:24 +01:00
Work around ActiveIdUsingKeyInputMask having a wrong type
This commit is contained in:
parent
b3dcdb4539
commit
3e2a6ec9cb
211 changed files with 10 additions and 219 deletions
|
|
@ -2,11 +2,9 @@
|
|||
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using System.Text.Unicode;
|
||||
|
|
@ -209,8 +207,7 @@ internal sealed unsafe class DalamudIme : IInternalDisposableService
|
|||
}
|
||||
}
|
||||
|
||||
private static ImGuiInputTextStatePtr GetInputTextState() =>
|
||||
(ImGuiInputTextState*)((nint)ImGui.GetCurrentContext().Handle + 0x4588);
|
||||
private static ImGuiInputTextStatePtr GetInputTextState() => new(&ImGui.GetCurrentContext().Handle->InputTextState);
|
||||
|
||||
private static (string String, bool Supported) ToUcs2(char* data, int nc = -1)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ $sourcePaths = (
|
|||
# replace "ImGuiKey.GamepadStart"
|
||||
$tmp = Get-Content -Path "$PSScriptRoot\imgui\Dalamud.Bindings.ImGui\Generated\Enums\ImGuiKeyPrivate.cs" -Raw
|
||||
$tmp = $tmp.Replace("unchecked((int)GamepadStart)", "unchecked((int)ImGuiKey.GamepadStart)").Trim()
|
||||
$tmp | Set-Content -Path "$PSScriptRoot\imgui\Dalamud.Bindings.ImGui\Generated\Enums\ImGuiKeyPrivate.cs" -Encoding ascii
|
||||
$tmp.Trim() | Set-Content -Path "$PSScriptRoot\imgui\Dalamud.Bindings.ImGui\Generated\Enums\ImGuiKeyPrivate.cs" -Encoding ascii
|
||||
|
||||
try
|
||||
{
|
||||
|
|
@ -141,7 +141,9 @@ foreach ($sourcePath in $sourcePaths)
|
|||
$husks = $husks.Replace("public unsafe struct", "public unsafe partial struct")
|
||||
$husks = $referNativeFunctionQualified.Replace($husks, '$1Native.$2')
|
||||
$husks = "// <auto-generated/>`r`n`r`nusing $([string]::Join(";`r`nusing ", $imports) );`r`n`r`n$husks"
|
||||
$husks | Set-Content -Path "$targetPath.gen.cs" -Encoding ascii
|
||||
$husks = $husks -ireplace 'nuint (ActiveIdUsingKeyInputMask)', 'ImBitArrayImGuiKeyNamedKeyCOUNTLessImGuiKeyNamedKeyBEGIN $1'
|
||||
$husks = $husks.Replace('ref Unsafe.AsRef<nuint>(&Handle->ActiveIdUsingKeyInputMask)', 'ref Unsafe.AsRef<ImBitArrayImGuiKeyNamedKeyCOUNTLessImGuiKeyNamedKeyBEGIN>(&Handle->ActiveIdUsingKeyInputMask)')
|
||||
$husks.Trim() | Set-Content -Path "$targetPath.gen.cs" -Encoding ascii
|
||||
}
|
||||
|
||||
$husks = "// <auto-generated/>`r`n`r`nusing $([string]::Join(";`r`nusing ", $imports) );`r`n`r`nnamespace $namespace;`r`n`r`n"
|
||||
|
|
@ -286,6 +288,6 @@ foreach ($sourcePath in $sourcePaths)
|
|||
$null = $sb.Append("// DISCARDED: $methodName`r`n")
|
||||
}
|
||||
|
||||
$sb.ToString() | Set-Content -Path "$targetPath/$className.gen.cs" -Encoding ascii
|
||||
$sb.ToString().Trim() | Set-Content -Path "$targetPath/$className.gen.cs" -Encoding ascii
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8896,4 +8896,3 @@ public unsafe partial class ImGui
|
|||
// DISCARDED: internal static byte VSliderFloatNative(byte* label, Vector2 size, float* v, float vMin, float vMax, byte* format, ImGuiSliderFlags flags)
|
||||
// DISCARDED: internal static byte VSliderIntNative(byte* label, Vector2 size, int* v, int vMin, int vMax, byte* format, ImGuiSliderFlags flags)
|
||||
// DISCARDED: internal static byte VSliderScalarNative(byte* label, Vector2 size, ImGuiDataType dataType, void* pData, void* pMin, void* pMax, byte* format, ImGuiSliderFlags flags)
|
||||
|
||||
|
|
|
|||
|
|
@ -4828,4 +4828,3 @@ public unsafe partial class ImGuiNative
|
|||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImBitArrayImGuiKeyNamedKeyCOUNTLessImGuiKeyNamedKeyBEGIN
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImBitVector
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImBitVectorPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImChunkStreamImGuiTableSettings
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImChunkStreamImGuiWindowSettings
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,4 +47,3 @@ public unsafe partial struct ImColor
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -32,4 +32,3 @@ public unsafe partial struct ImColorPtr
|
|||
ImGuiNative.SetHSV(Handle, h, s, v, (float)(1.0f));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawChannel
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawChannelPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,4 +27,3 @@ public unsafe partial struct ImDrawCmd
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawCmdHeader
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,4 +21,3 @@ public unsafe partial struct ImDrawCmdPtr
|
|||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,4 +40,3 @@ public unsafe partial struct ImDrawData
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawDataBuilder
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawDataBuilderPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,4 +28,3 @@ public unsafe partial struct ImDrawDataPtr
|
|||
ImGuiNative.ScaleClipRects(Handle, fbScale);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -756,4 +756,3 @@ public unsafe partial struct ImDrawList
|
|||
}
|
||||
}
|
||||
// DISCARDED: AddText
|
||||
|
||||
|
|
|
|||
|
|
@ -441,4 +441,3 @@ public unsafe partial struct ImDrawListPtr
|
|||
}
|
||||
}
|
||||
// DISCARDED: AddText
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawListPtrPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImDrawListSharedData
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImDrawListSharedDataPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -84,4 +84,3 @@ public unsafe partial struct ImDrawListSplitter
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,4 +57,3 @@ public unsafe partial struct ImDrawListSplitterPtr
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawVert
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImDrawVertPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -174,4 +174,3 @@ public unsafe partial struct ImFont
|
|||
// DISCARDED: GetDebugName
|
||||
// DISCARDED: GetDebugNameS
|
||||
// DISCARDED: RenderText
|
||||
|
||||
|
|
|
|||
|
|
@ -1829,4 +1829,3 @@ public unsafe partial struct ImFontAtlas
|
|||
// DISCARDED: AddFontFromMemoryCompressedBase85TTF
|
||||
// DISCARDED: AddFontFromMemoryCompressedTTF
|
||||
// DISCARDED: AddFontFromMemoryTTF
|
||||
|
||||
|
|
|
|||
|
|
@ -27,4 +27,3 @@ public unsafe partial struct ImFontAtlasCustomRect
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,4 +21,3 @@ public unsafe partial struct ImFontAtlasCustomRectPtr
|
|||
return ret != 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1409,4 +1409,3 @@ public unsafe partial struct ImFontAtlasPtr
|
|||
// DISCARDED: AddFontFromMemoryCompressedBase85TTF
|
||||
// DISCARDED: AddFontFromMemoryCompressedTTF
|
||||
// DISCARDED: AddFontFromMemoryTTF
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontAtlasTexture
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontAtlasTexturePtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontBuilderIO
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontBuilderIOPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImFontConfig
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImFontConfigPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontGlyph
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontGlyphHotData
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontGlyphHotDataPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontGlyphPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -73,4 +73,3 @@ public unsafe partial struct ImFontGlyphRangesBuilder
|
|||
}
|
||||
}
|
||||
// DISCARDED: AddText
|
||||
|
||||
|
|
|
|||
|
|
@ -49,4 +49,3 @@ public unsafe partial struct ImFontGlyphRangesBuilderPtr
|
|||
}
|
||||
}
|
||||
// DISCARDED: AddText
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontKerningPair
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontKerningPairPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -114,4 +114,3 @@ public unsafe partial struct ImFontPtr
|
|||
// DISCARDED: GetDebugName
|
||||
// DISCARDED: GetDebugNameS
|
||||
// DISCARDED: RenderText
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImFontPtrPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiColorMod
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiColorModPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiComboPreviewData
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiComboPreviewDataPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiContext
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiContextHook
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiContextHookPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiContextPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDataTypeInfo
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDataTypeInfoPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDataTypeTempStorage
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiDockContext
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiDockContextPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDockNode
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDockNodePtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDockNodeSettings
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDockNodeSettingsPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDockRequest
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiDockRequestPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiGroupData
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiGroupDataPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -106,4 +106,3 @@ public unsafe partial struct ImGuiIO
|
|||
// DISCARDED: AddInputCharacter
|
||||
// DISCARDED: AddInputCharactersUTF8
|
||||
// DISCARDED: AddInputCharacterUTF16
|
||||
|
||||
|
|
|
|||
|
|
@ -67,4 +67,3 @@ public unsafe partial struct ImGuiIOPtr
|
|||
// DISCARDED: AddInputCharacter
|
||||
// DISCARDED: AddInputCharactersUTF8
|
||||
// DISCARDED: AddInputCharacterUTF16
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiInputEvent
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiInputEventAppFocused
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiInputEventKey
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiInputEventMouseButton
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiInputEventMousePos
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiInputEventMouseViewport
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiInputEventMouseWheel
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiInputEventPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiInputEventText
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,4 +49,3 @@ public unsafe partial struct ImGuiInputTextCallbackData
|
|||
}
|
||||
}
|
||||
// DISCARDED: InsertChars
|
||||
|
||||
|
|
|
|||
|
|
@ -34,4 +34,3 @@ public unsafe partial struct ImGuiInputTextCallbackDataPtr
|
|||
}
|
||||
}
|
||||
// DISCARDED: InsertChars
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiInputTextState
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiInputTextStatePtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiKeyData
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiKeyDataPtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiLastItemData
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiLastItemDataPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,4 +55,3 @@ public unsafe partial struct ImGuiListClipper
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiListClipperData
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiListClipperDataPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -37,4 +37,3 @@ public unsafe partial struct ImGuiListClipperPtr
|
|||
return ret != 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiListClipperRange
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ namespace Dalamud.Bindings.ImGui;
|
|||
public unsafe partial struct ImGuiListClipperRangePtr
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiMenuColumns
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ public unsafe partial struct ImGuiMenuColumnsPtr
|
|||
ImGuiNative.Destroy(Handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ public unsafe partial struct ImGuiMetricsConfig
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue