-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.hpp
More file actions
32 lines (28 loc) · 934 Bytes
/
common.hpp
File metadata and controls
32 lines (28 loc) · 934 Bytes
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
#pragma once
namespace Ghidra {
typedef void* pointer;
typedef void* pointer32;
typedef unsigned char undefined;
// typedef unsigned char bool;
// typedef unsigned char byte;
typedef unsigned int dword;
// typedef unsigned long long GUID; // different then the Windows one?
typedef pointer32 ImageBaseOffset32;
typedef long long longlong;
typedef unsigned long long qword;
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long long uint16;
typedef unsigned long ulong;
typedef unsigned long long ulonglong;
typedef unsigned char undefined1;
typedef unsigned short undefined2;
typedef unsigned char undefined3[3]; // This is valid in struct-contexts only
typedef unsigned int undefined4;
typedef unsigned long long undefined6;
typedef unsigned long long undefined8;
typedef unsigned short ushort;
// typedef short wchar_t;
typedef unsigned short word;
} // namespace Ghidra
using namespace Ghidra;