mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
14 lines
539 B
C#
14 lines
539 B
C#
|
using System;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace ImGuiNET
|
|||
|
{
|
|||
|
public static unsafe partial class ImGuiNative
|
|||
|
{
|
|||
|
[DllImport("cimgui", CallingConvention = CallingConvention.Cdecl)]
|
|||
|
public static extern void ImGuiPlatformIO_Set_Platform_GetWindowPos(ImGuiPlatformIO* platform_io, IntPtr funcPtr);
|
|||
|
[DllImport("cimgui", CallingConvention = CallingConvention.Cdecl)]
|
|||
|
public static extern void ImGuiPlatformIO_Set_Platform_GetWindowSize(ImGuiPlatformIO* platform_io, IntPtr funcPtr);
|
|||
|
}
|
|||
|
}
|