mirror of
https://github.com/Perfare/Il2CppDumper.git
synced 2025-01-09 11:17:35 -03:00
Add bool typedef (#664)
This commit is contained in:
parent
cd4d06d9b3
commit
5689cfb1e6
1 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,8 @@ header = "typedef unsigned __int8 uint8_t;\n" \
|
|||
"typedef __int64 int64_t;\n" \
|
||||
"typedef __int64 intptr_t;\n" \
|
||||
"typedef __int64 uintptr_t;\n" \
|
||||
"typedef unsigned __int64 size_t;\n"
|
||||
"typedef unsigned __int64 size_t;\n" \
|
||||
"typedef _Bool bool;\n"
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in a new issue