1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 15:18:16 +00:00

add types for windows only in case _BASETSD_H was not set

based on 96ea03db72
This commit is contained in:
jsteube 2016-09-05 13:07:09 +02:00
parent ddfd212513
commit d54b399561

View File

@ -80,6 +80,7 @@ typedef void *XNVCTRL_LIB;
#include <psapi.h> #include <psapi.h>
#include <io.h> #include <io.h>
#ifndef _BASETSD_H
typedef UINT8 uint8_t; typedef UINT8 uint8_t;
typedef UINT16 uint16_t; typedef UINT16 uint16_t;
typedef UINT32 uint32_t; typedef UINT32 uint32_t;
@ -88,6 +89,7 @@ typedef INT8 int8_t;
typedef INT16 int16_t; typedef INT16 int16_t;
typedef INT32 int32_t; typedef INT32 int32_t;
typedef INT64 int64_t; typedef INT64 int64_t;
#endif
typedef HINSTANCE OCL_LIB; typedef HINSTANCE OCL_LIB;