Skip to content

Commit 5689cfb

Browse files
authored
Add bool typedef (#664)
1 parent cd4d06d commit 5689cfb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Il2CppDumper/il2cpp_header_to_ghidra.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"typedef __int64 int64_t;\n" \
1111
"typedef __int64 intptr_t;\n" \
1212
"typedef __int64 uintptr_t;\n" \
13-
"typedef unsigned __int64 size_t;\n"
13+
"typedef unsigned __int64 size_t;\n" \
14+
"typedef _Bool bool;\n"
1415

1516

1617
def main():

0 commit comments

Comments
 (0)