summaryrefslogtreecommitdiff
path: root/lib/Djup.Native/LibDjup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Djup.Native/LibDjup.cs')
-rw-r--r--lib/Djup.Native/LibDjup.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/Djup.Native/LibDjup.cs b/lib/Djup.Native/LibDjup.cs
deleted file mode 100644
index 5e6db83..0000000
--- a/lib/Djup.Native/LibDjup.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-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();
-}