NVTemp.DLL可获取NVIDIA显卡的温度,int GetTemperature(unsigned long temperature[])
可以在能够调用DLL的语言中使用。
在C#中调用:
申明:
[DllImport("NvTemp.dll", EntryPoint = "GetTemperature")]
public static extern bool GetTemperature(ulong[] temp);
调用:
temp = new ulong[1];
r = GetTemperature(temp);
在temp[0]中为温度。
1