Merge pull request #194 from gm4tr1x/fixADLv2
[hashcat.git] / include / ext_smi.h
1 /**
2 * Author......: Jens Steube <jens.steube@gmail.com>
3 * License.....: MIT
4 */
5
6 #ifndef EXT_SMI_H
7 #define EXT_SMI_H
8
9 #ifdef HAVE_HWMON
10
11 #include <common.h>
12
13 #define SMI_OK 0
14 #define SMI_NOBIN 1
15
16 int hc_nvidia_smi (int dev, int *temperature, int *gpu);
17
18 #endif // HAVE_HWMON
19
20 #endif