Files
DllExports/Samples/SingleTarget/Class1.cs
2023-07-23 13:45:09 +10:00

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()
{
}
}
}