Files
2026-02-21 16:45:37 +08:00

8 lines
268 B
C#

using System.Runtime.InteropServices;
namespace Viveport.Internal
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
internal delegate void GetLicenseCallback([MarshalAs(UnmanagedType.LPStr)] string message, [MarshalAs(UnmanagedType.LPStr)] string signature);
}