protected override IntPtr CoreLoadFunctionPointer(IntPtr handle, string functionName) { return(Libc.dlsym(handle, functionName)); }
protected override IntPtr CoreLoadNativeLibrary(string name) { return(Libc.dlopen(name, Libc.RtldNow)); }
protected override void CoreFreeNativeLibrary(IntPtr handle) { Libc.dlclose(handle); }