pureikyubu/RnD/ManagedUi/DolwinNativeDll.cs
ogamespec 1a2a6e5366 Profiler tool skeleton
- Updated Dolwin Interop
2020-04-18 22:42:36 +03:00

17 lines
347 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
namespace ManagedUi
{
class DolwinNativeDll
{
[DllImport("DolwinNative.dll", CallingConvention=CallingConvention.Cdecl)]
public static extern void Test();
}
}