ID Chip Reader
typedef.h
Go to the documentation of this file.
1
7
#pragma once
8
#ifndef CRYPTOGRAPHY_TYPEDEF_H_
9
#define CRYPTOGRAPHY_TYPEDEF_H_
10
11
// typedef _Bool bool, BOOL;
12
13
typedef
unsigned
char
uchar
,
u8
,
U8
,
uint8
,
uint8_t
,
UINT8
,
BYTE
;
14
typedef
signed
char
s8
,
S8
,
int8
,
INT8
,
char_t
;
15
16
typedef
unsigned
int
u16
,
uint16
,
uint16_t
,
UINT16
,
WORD
;
17
typedef
signed
int
s16
,
S16
,
int16
,
INT16
;
18
19
typedef
unsigned
long
uint
,
ushort
,
u32
,
U32
,
uint32
,
uint32_t
,
UINT32
,
DWORD
;
20
typedef
signed
long
s32
,
S32
,
int32
,
INT32
;
21
22
typedef
unsigned
long
uint64_t
,
u64
,
U64
,
uint64
,
UINT64
;
23
typedef
signed
long
s64
,
S64
,
int64
,
INT64
;
24
25
typedef
unsigned
short
string
;
26
27
#define TRUE 1
28
#define FALSE 0
29
#define true 1
30
#define false 0
31
// #define NULL 0
32
33
#endif
// #ifndef CRYPTOGRAPHY_TYPEDEF_H_
include
cryptography
typedef.h
Generated by
1.9.1