diff options
| author | Joel Stålnacke <joel@saker.fi> | 2024-10-08 19:59:10 +0300 |
|---|---|---|
| committer | Joel Stålnacke <joel@saker.fi> | 2024-10-08 19:59:10 +0300 |
| commit | 4bac6ae2e725a1997674fd3369bf4ea032235d8b (patch) | |
| tree | cd9682eac89c1da5d5c54741684b5e8405f5d54c /lib/Djup.Native/LibDjup.cs | |
| parent | 21001a44f1781423ae04f35ee41e042ae6f01355 (diff) | |
Add a native "Hello World" to the project
After much trouble with MSBuild
Diffstat (limited to 'lib/Djup.Native/LibDjup.cs')
| -rw-r--r-- | lib/Djup.Native/LibDjup.cs | 12 |
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(); -} |
