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