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