forked from Ivasoft/DllExports
14 lines
229 B
C#
14 lines
229 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using DllExports;
|
|
|
|
namespace MultiTarget
|
|
{
|
|
public class Class1
|
|
{
|
|
[DllExport("MyExport")]
|
|
public static void InternalName()
|
|
{
|
|
}
|
|
}
|
|
} |