-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathBaseTypes.h
99 lines (81 loc) · 2.04 KB
/
BaseTypes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#ifndef BASE_TYPES_H_
#define BASE_TYPES_H_
#ifndef GHIDRA
#define PS_ENUM(_type, _name) enum _name : _type
#else
#define PS_ENUM(_type, _name) typedef enum _name
#endif
typedef signed char int8;
typedef unsigned char uint8;
typedef signed short int16;
typedef unsigned short uint16;
typedef signed long int32;
typedef unsigned long uint32;
typedef signed long long int64;
typedef unsigned long long uint64;
typedef uint64 __darwin_size_t;
typedef __darwin_size_t size_t;
typedef uint8 UInt8;
typedef uint16 UInt16;
typedef uint32 UInt32;
typedef uint64 UInt64;
typedef int8 SInt8;
typedef int16 SInt16;
typedef int32 SInt32;
typedef int64 SInt64;
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef int64 int64_t;
typedef uint64 uint64_t;
typedef uint64 uintptr_t;
typedef long intptr_t;
typedef struct {
unsigned int gp_offset;
unsigned int fp_offset;
void *overflow_arg_area;
void *reg_save_area;
} va_list[1];
typedef int64 __darwin_time_t;
struct timespec {
__darwin_time_t tv_sec;
int64 tv_nsec;
};
typedef uint8 Boolean;
typedef int kern_return_t;
typedef unsigned int __darwin_natural_t;
typedef unsigned long long u_int64_t;
typedef uintptr_t vm_offset_t;
typedef vm_offset_t vm_address_t;
typedef uint64_t mach_vm_address_t;
typedef UInt64 AbsoluteTime;
typedef struct ipc_port *ipc_port_t;
typedef ipc_port_t mach_port_t;
// Just C
typedef struct _OSObject *OSObject;
typedef struct objc_class *Class;
typedef struct NSObject {
Class isa;
} NSObject;
#ifdef __ARM__
typedef bool BOOL;
#else
typedef signed char BOOL;
#endif
typedef float Float32;
typedef double Float64;
typedef unsigned long UniCharCount;
typedef UInt32 UTF32Char;
typedef UInt16 UniChar;
typedef UInt16 UTF16Char;
typedef UInt8 UTF8Char;
typedef int errno_t;
typedef int32_t integer_t;
typedef int64_t off_t;
typedef size_t rsize_t;
extern uintptr_t __stack_chk_guard;
__attribute__((noreturn)) void __stack_chk_fail(void);
#endif