MoonWorksDearImGuiScaffold/lib/ImGui.NET/ImGuiTextEditCallback.cs

8 lines
207 B
C#
Raw Permalink Normal View History

2023-12-22 00:03:12 +01:00
using System.Runtime.InteropServices;
namespace ImGuiNET
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public unsafe delegate int ImGuiInputTextCallback(ImGuiInputTextCallbackData* data);
}