blob: 5e6db83397c5b78c505e0a24b9af1008cbfc392f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Runtime.InteropServices;
namespace Djup.Native;
public static partial class LibDjup
{
const string LibraryName = "djup";
const string Prefix = "dp_";
[LibraryImport(LibraryName, EntryPoint = Prefix + nameof(hello_world))]
public static partial void hello_world();
}
|