From d54b39956193e0478971695d3d3e034d175b7ffb Mon Sep 17 00:00:00 2001 From: jsteube Date: Mon, 5 Sep 2016 13:07:09 +0200 Subject: [PATCH] add types for windows only in case _BASETSD_H was not set based on https://github.com/hashcat/hashcat/pull/485/commits/96ea03db72de1f1022de3ae11e0952ad8f9d83e6 --- include/common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/common.h b/include/common.h index 299b79f42..1690db880 100644 --- a/include/common.h +++ b/include/common.h @@ -80,6 +80,7 @@ typedef void *XNVCTRL_LIB; #include #include +#ifndef _BASETSD_H typedef UINT8 uint8_t; typedef UINT16 uint16_t; typedef UINT32 uint32_t; @@ -88,6 +89,7 @@ typedef INT8 int8_t; typedef INT16 int16_t; typedef INT32 int32_t; typedef INT64 int64_t; +#endif typedef HINSTANCE OCL_LIB;