Пример #1
0
 protected override IntPtr CoreLoadFunctionPointer(IntPtr handle, string functionName)
 {
     return(Libc.dlsym(handle, functionName));
 }
Пример #2
0
 protected override IntPtr CoreLoadNativeLibrary(string name)
 {
     return(Libc.dlopen(name, Libc.RtldNow));
 }
Пример #3
0
 protected override void CoreFreeNativeLibrary(IntPtr handle)
 {
     Libc.dlclose(handle);
 }