文件名称:获取NVIDIA显卡温度模块 支持 C++ VB C# 等
文件大小:30KB
文件格式:DLL
更新时间:2013-04-16 17:04:28
NVIDIA 显卡 温度
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]中为温度。