mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-23 07:08:19 +00:00
Fix ulong datatype on Windows x64
This commit is contained in:
parent
d9cb5cf8df
commit
6a32e8ef18
@ -7,10 +7,11 @@
|
||||
#define _INC_TYPES_H
|
||||
|
||||
#ifdef IS_CUDA
|
||||
typedef unsigned char uchar;
|
||||
typedef unsigned short ushort;
|
||||
typedef unsigned int uint;
|
||||
typedef unsigned long ulong;
|
||||
//https://docs.nvidia.com/cuda/nvrtc/index.html#integer-size
|
||||
typedef unsigned char uchar;
|
||||
typedef unsigned short ushort;
|
||||
typedef unsigned int uint;
|
||||
typedef unsigned long long ulong;
|
||||
#endif
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
|
Loading…
Reference in New Issue
Block a user