You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/include/ext_smi.h

21 lines
288 B

/**
* Author......: Jens Steube <jens.steube@gmail.com>
* License.....: MIT
*/
#ifndef EXT_SMI_H
#define EXT_SMI_H
#ifdef HAVE_HWMON
#include <common.h>
#define SMI_OK 0
#define SMI_NOBIN 1
int hc_nvidia_smi (int dev, int *temperature, int *gpu);
#endif // HAVE_HWMON
#endif