forked from Ivasoft/DllExports
15 lines
256 B
C#
15 lines
256 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using DllExports;
|
|
|
|
namespace SingleTarget
|
|
{
|
|
public class Class1
|
|
{
|
|
[DllExport("MyExport", CallingConvention.Cdecl)]
|
|
public static void InternalName()
|
|
{
|
|
}
|
|
}
|
|
}
|