mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
19 lines
272 B
C
19 lines
272 B
C
|
/**
|
||
|
* Author......: Jens Steube <jens.steube@gmail.com>
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#ifndef EXT_SMI_H
|
||
|
#define EXT_SMI_H
|
||
|
|
||
|
#include <common.h>
|
||
|
|
||
|
#define SMI_OK 0
|
||
|
#define SMI_NOBIN 1
|
||
|
|
||
|
typedef int HM_ADAPTER;
|
||
|
|
||
|
int hc_nvidia_smi (int dev, int *temperature, int *gpu);
|
||
|
|
||
|
#endif
|