# HG changeset patch # User moel.mich # Date 1274210215 0 # Node ID f7e492b436900253d7918d42fef462c1b20682d6 # Parent 41dc766e28b8e5509ea6a948bf306d02937ff77e Fixed an EntryPointNotFoundException in the NVAPI wrapper: System.EntryPointNotFoundException: N?o ? poss?vel localizar um ponto de entrada denominado 'nvapi_QueryInterface' na DLL 'nvapi.dll'. em PInvokeDelegateFactoryInternalWrapperType38.nvapi_QueryInterface(UInt32 id) em OpenHardwareMonitor.Hardware.Nvidia.NVAPI.GetDelegate[T](UInt32 id, T& newDelegate) em OpenHardwareMonitor.Hardware.Nvidia.NVAPI..cctor() diff -r 41dc766e28b8 -r f7e492b43690 Hardware/Nvidia/NVAPI.cs --- a/Hardware/Nvidia/NVAPI.cs Tue May 18 19:12:13 2010 +0000 +++ b/Hardware/Nvidia/NVAPI.cs Tue May 18 19:16:55 2010 +0000 @@ -236,6 +236,7 @@ try { GetDelegate(0x0150E828, out NvAPI_Initialize); } catch (DllNotFoundException) { return; } + catch (EntryPointNotFoundException) { return; } catch (ArgumentNullException) { return; } if (NvAPI_Initialize() == NvStatus.OK) { diff -r 41dc766e28b8 -r f7e492b43690 Properties/AssemblyInfo.cs --- a/Properties/AssemblyInfo.cs Tue May 18 19:12:13 2010 +0000 +++ b/Properties/AssemblyInfo.cs Tue May 18 19:16:55 2010 +0000 @@ -69,5 +69,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.1.34.0")] -[assembly: AssemblyFileVersion("0.1.34.0")] +[assembly: AssemblyVersion("0.1.35.0")] +[assembly: AssemblyFileVersion("0.1.35.0")]