1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 00:01:16 +00:00

Fix ulong datatype on Windows x64

This commit is contained in:
Jens Steube 2019-04-26 14:11:13 +02:00
parent d9cb5cf8df
commit 6a32e8ef18

View File

@ -7,10 +7,11 @@
#define _INC_TYPES_H #define _INC_TYPES_H
#ifdef IS_CUDA #ifdef IS_CUDA
typedef unsigned char uchar; //https://docs.nvidia.com/cuda/nvrtc/index.html#integer-size
typedef unsigned short ushort; typedef unsigned char uchar;
typedef unsigned int uint; typedef unsigned short ushort;
typedef unsigned long ulong; typedef unsigned int uint;
typedef unsigned long long ulong;
#endif #endif
#ifdef KERNEL_STATIC #ifdef KERNEL_STATIC