Exemplo n.º 1
0
 protected override IntPtr CoreLoadFunctionPointer(IntPtr handle, string functionName)
 {
     return(Libdl.dlsym(handle, functionName));
 }
Exemplo n.º 2
0
 protected override IntPtr CoreLoadNativeLibrary(string name)
 {
     return(Libdl.dlopen(name, Libdl.RtldNow));
 }
Exemplo n.º 3
0
 protected override void CoreFreeNativeLibrary(IntPtr handle)
 {
     Libdl.dlclose(handle);
 }