mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
17 lines
347 B
C#
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();
|
|
|
|
}
|
|
}
|