Initial commit
[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 #include <common.h>
10
11 #define SMI_OK 0
12 #define SMI_NOBIN 1
13
14 typedef int HM_ADAPTER;
15
16 int hc_nvidia_smi (int dev, int *temperature, int *gpu);
17
18 #endif