Mitmgate v0.0.0+dev.3
Man in the Middle Keylogger and Injector
Loading...
Searching...
No Matches
typedef.h
Go to the documentation of this file.
1
8
9#ifndef TYPDEF_H
10#define TYPDEF_H
11
15typedef unsigned char uint8_t;
16
20typedef unsigned short uint16_t;
21
25typedef unsigned int uint32_t;
26
30typedef uint8_t u8;
31
35typedef uint16_t u16;
36
40typedef uint32_t u32;
41
42#endif // TYPDEF_H
unsigned short uint16_t
Unsigned 16-bit integer.
Definition typedef.h:20
unsigned int uint32_t
Unsigned 32-bit integer.
Definition typedef.h:25
uint8_t u8
Short alias for unsigned 8-bit integer.
Definition typedef.h:30
unsigned char uint8_t
Unsigned 8-bit integer.
Definition typedef.h:15
uint16_t u16
Short alias for unsigned 16-bit integer.
Definition typedef.h:35
uint32_t u32
Short alias for unsigned 32-bit integer.
Definition typedef.h:40