コード例 #1
0
ファイル: SdkHandle.cs プロジェクト: guoyu07/ts3_sdk_dotNet
        public static SdkHandle Load(SupportedPlatform platform, string[] possibleNames)
        {
            DllUnloaded.WaitOne();
            IntPtr handle;
            string location;

            PlatformSpecific.LoadDynamicLibrary(platform, possibleNames, out handle, out location);
            return(new SdkHandle(handle, platform, location));
        }