上传者: happyw2004
|
上传时间: 2021-03-08 22:02:01
|
文件大小: 30KB
|
文件类型: DLL
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]中为温度。