Fixed an EntryPointNotFoundException in the NVAPI wrapper:
authormoel.mich
Tue, 18 May 2010 19:16:55 +0000
changeset 121f7e492b43690
parent 120 41dc766e28b8
child 122 3ef997c53b50
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()
Hardware/Nvidia/NVAPI.cs
Properties/AssemblyInfo.cs
     1.1 --- a/Hardware/Nvidia/NVAPI.cs	Tue May 18 19:12:13 2010 +0000
     1.2 +++ b/Hardware/Nvidia/NVAPI.cs	Tue May 18 19:16:55 2010 +0000
     1.3 @@ -236,6 +236,7 @@
     1.4        try {
     1.5          GetDelegate(0x0150E828, out NvAPI_Initialize);
     1.6        } catch (DllNotFoundException) { return; } 
     1.7 +        catch (EntryPointNotFoundException) { return; } 
     1.8          catch (ArgumentNullException) { return; }
     1.9  
    1.10        if (NvAPI_Initialize() == NvStatus.OK) {
     2.1 --- a/Properties/AssemblyInfo.cs	Tue May 18 19:12:13 2010 +0000
     2.2 +++ b/Properties/AssemblyInfo.cs	Tue May 18 19:16:55 2010 +0000
     2.3 @@ -69,5 +69,5 @@
     2.4  // You can specify all the values or you can default the Build and Revision Numbers 
     2.5  // by using the '*' as shown below:
     2.6  // [assembly: AssemblyVersion("1.0.*")]
     2.7 -[assembly: AssemblyVersion("0.1.34.0")]
     2.8 -[assembly: AssemblyFileVersion("0.1.34.0")]
     2.9 +[assembly: AssemblyVersion("0.1.35.0")]
    2.10 +[assembly: AssemblyFileVersion("0.1.35.0")]