1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 09:58:57 +00:00
hashcat/include/types_int.h
jsteube 3daf0af480 Added docs/credits.txt
Added docs/team.txt
2016-09-11 22:20:15 +02:00

35 lines
639 B
C

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _TYPES_INT_H
#define _TYPES_INT_H
#include <stdint.h>
#include <stdbool.h>
#if defined (_WIN)
#include <windows.h>
#if defined (_BASETSD_H)
#else
typedef UINT8 uint8_t;
typedef UINT16 uint16_t;
typedef UINT32 uint32_t;
typedef UINT64 uint64_t;
typedef INT8 int8_t;
typedef INT16 int16_t;
typedef INT32 int32_t;
typedef INT64 int64_t;
#endif
#endif // _WIN
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef uint32_t uint; // we need to get rid of this sooner or later, for consistency
#endif // _TYPES_INT_H