예제 #1
0
파일: Commands.cs 프로젝트: gomson/vk
            protected override IntPtr LoadLibrary(string libraryName)
            {
                Libdl.dlerror();
                IntPtr handle = Libdl.dlopen(libraryName, Libdl.RTLD_NOW);

                if (handle == IntPtr.Zero && !Path.IsPathRooted(libraryName))
                {
                    string localPath = Path.Combine(AppContext.BaseDirectory, libraryName);
                    handle = Libdl.dlopen(localPath, Libdl.RTLD_NOW);
                }

                return(handle);
            }
예제 #2
0
파일: Commands.cs 프로젝트: gomson/vk
 protected override IntPtr LoadFunction(string functionName)
 {
     return(Libdl.dlsym(NativeHandle, functionName));
 }
예제 #3
0
파일: Commands.cs 프로젝트: gomson/vk
 protected override void FreeLibrary(IntPtr libraryHandle)
 {
     Libdl.dlclose(libraryHandle);
 }