1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

fix ext_iokit.h

This commit is contained in:
Gabriele Gristina 2021-06-12 20:24:43 +02:00
parent bc4ce4cbeb
commit 4dc20533bd

View File

@ -6,7 +6,7 @@
#ifndef _EXT_IOKIT_H
#define _EXT_IOKIT_H
#ifdef __APPLE__
#if defined(__APPLE__)
#include <IOKit/IOKitLib.h>
// Apple SMC Keys
@ -109,6 +109,7 @@ typedef struct hm_iokit_lib
typedef hm_iokit_lib_t IOKIT_PTR;
#if defined(__APPLE__)
UInt32 hm_IOKIT_strtoul (char *str, int size, int base);
void hm_IOKIT_ultostr (char *str, UInt32 val);
kern_return_t hm_IOKIT_SMCOpen (void *hashcat_ctx, io_connect_t *conn);
@ -121,5 +122,6 @@ bool hm_IOKIT_SMCGetFanRPM (char *key, io_connect_t conn, float *ret);
int hm_IOKIT_get_fan_speed_current (void *hashcat_ctx, int *fan_speed);
bool iokit_init (void *hashcat_ctx);
bool iokit_close (void *hashcat_ctx);
#endif // __APPLE__
#endif // _EXT_IOKIT_H