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

Add missing files

This commit is contained in:
jsteube 2016-11-05 23:34:17 +01:00
parent bcf24850a8
commit a079b04ac8
2 changed files with 32 additions and 0 deletions

25
include/ext_sysfs.h Normal file
View File

@ -0,0 +1,25 @@
/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _EXT_SYSFS_H
#define _EXT_SYSFS_H
static const char SYS_BUS_PCI_DEVICES[] = "/sys/bus/pci/devices";
typedef int HM_ADAPTER_SYSFS;
typedef void *SYSFS_LIB;
typedef struct hm_sysfs_lib
{
// currently not using libudev, because it can only read values, not set them, so using /sys instead
SYSFS_LIB lib;
} hm_sysfs_lib_t;
typedef hm_sysfs_lib_t SYSFS_PTR;
#endif // _EXT_SYSFS_H

7
src/ext_sysfs.c Normal file
View File

@ -0,0 +1,7 @@
/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#include "common.h"
#include "ext_sysfs.h"