mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 03:49:19 +01:00
restructure
This commit is contained in:
parent
3381ac1c7d
commit
b53a97408b
263 changed files with 2221 additions and 1191 deletions
|
|
@ -8953,6 +8953,7 @@ public unsafe partial class ImGui
|
|||
// DISCARDED: internal static uint GetIDNative(byte* strIdBegin, byte* strIdEnd)
|
||||
// DISCARDED: internal static uint GetIDNative(void* ptrId)
|
||||
// DISCARDED: internal static int* GetIntRefNative(ImGuiStorage* self, uint key, int defaultVal)
|
||||
// DISCARDED: internal static void** GetVoidPtrRefNative(ImGuiStorage* self, uint key, void* defaultVal)
|
||||
// DISCARDED: internal static ImGuiTextFilter* ImGuiTextFilterNative(byte* defaultFilter)
|
||||
// DISCARDED: internal static ImGuiTextRange* ImGuiTextRangeNative()
|
||||
// DISCARDED: internal static ImGuiTextRange* ImGuiTextRangeNative(byte* b, byte* e)
|
||||
|
|
@ -3735,52 +3735,6 @@ public unsafe partial class ImGuiNative
|
|||
return ((delegate* unmanaged[Cdecl]<ImGuiStorage*, uint, void*, void**>)ImGui.funcTable[473])(self, key, defaultVal);
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public static void** GetVoidPtrRef(ImGuiStoragePtr self, uint key, void* defaultVal)
|
||||
{
|
||||
void** ret = GetVoidPtrRef(self, key, defaultVal);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public static void** GetVoidPtrRef(ImGuiStoragePtr self, uint key)
|
||||
{
|
||||
void** ret = GetVoidPtrRef(self, key, (void*)(default));
|
||||
return ret;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public static void** GetVoidPtrRef(ref ImGuiStorage self, uint key, void* defaultVal)
|
||||
{
|
||||
fixed (ImGuiStorage* pself = &self)
|
||||
{
|
||||
void** ret = GetVoidPtrRef((ImGuiStorage*)pself, key, defaultVal);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public static void** GetVoidPtrRef(ref ImGuiStorage self, uint key)
|
||||
{
|
||||
fixed (ImGuiStorage* pself = &self)
|
||||
{
|
||||
void** ret = GetVoidPtrRef((ImGuiStorage*)pself, key, (void*)(default));
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static void SetAllInt(ImGuiStorage* self, int val)
|
||||
{
|
||||
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