mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-04 14:39:40 +00:00
76 lines
1.8 KiB
C
76 lines
1.8 KiB
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _EXT_XNVCTRL_H
|
|
#define _EXT_XNVCTRL_H
|
|
|
|
/**
|
|
* Stuff from X11/Xlib.h
|
|
*/
|
|
|
|
typedef void *(*XOPENDISPLAY) (char *);
|
|
typedef int (*XCLOSEDISPLAY) (void *);
|
|
|
|
/**
|
|
* Declarations from NVCtrl.h
|
|
*/
|
|
|
|
#define NV_CTRL_TARGET_TYPE_GPU 1
|
|
#define NV_CTRL_TARGET_TYPE_COOLER 5 /* e.g., fan */
|
|
|
|
#define NV_CTRL_GPU_COOLER_MANUAL_CONTROL 319 /* RW-G */
|
|
#define NV_CTRL_GPU_COOLER_MANUAL_CONTROL_FALSE 0
|
|
#define NV_CTRL_GPU_COOLER_MANUAL_CONTROL_TRUE 1
|
|
|
|
#define NV_CTRL_THERMAL_COOLER_CURRENT_LEVEL 417 /* R--C */
|
|
#define NV_CTRL_THERMAL_COOLER_LEVEL 320 /* RW-C */
|
|
|
|
/*
|
|
* NV_CTRL_GPU_CORE_THRESHOLD reflects the temperature at which the
|
|
* GPU is throttled to prevent overheating.
|
|
*/
|
|
|
|
#define NV_CTRL_GPU_CORE_THRESHOLD 61 /* R--G */
|
|
|
|
/**
|
|
* hashcat stuff from here
|
|
*/
|
|
|
|
typedef int HM_ADAPTER_XNVCTRL;
|
|
|
|
#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
|
|
#define XNVCTRL_API_CALL __stdcall
|
|
#else
|
|
#define XNVCTRL_API_CALL
|
|
#endif
|
|
|
|
typedef int (*XNVCTRL_API_CALL XNVCTRLQUERYTARGETATTRIBUTE) (void *, int, int, unsigned int, unsigned int, int *);
|
|
typedef void (*XNVCTRL_API_CALL XNVCTRLSETTARGETATTRIBUTE) (void *, int, int, unsigned int, unsigned int, int);
|
|
|
|
#if defined (_POSIX)
|
|
typedef void *XNVCTRL_LIB;
|
|
#else
|
|
typedef HINSTANCE XNVCTRL_LIB;
|
|
#endif
|
|
|
|
typedef struct hm_xnvctrl_lib
|
|
{
|
|
void *dpy;
|
|
|
|
XNVCTRL_LIB lib_x11;
|
|
XNVCTRL_LIB lib_xnvctrl;
|
|
|
|
XOPENDISPLAY XOpenDisplay;
|
|
XCLOSEDISPLAY XCloseDisplay;
|
|
|
|
XNVCTRLQUERYTARGETATTRIBUTE XNVCTRLQueryTargetAttribute;
|
|
XNVCTRLSETTARGETATTRIBUTE XNVCTRLSetTargetAttribute;
|
|
|
|
} hm_xnvctrl_lib_t;
|
|
|
|
typedef hm_xnvctrl_lib_t XNVCTRL_PTR;
|
|
|
|
#endif // _EXT_XNVCTRL_H
|