| 482 | return Arch |
| 483 | |
| 484 | def GetCompar(ComparisonName, DBs): |
| 485 | if (ComparisonName.lower() == "x86_32"): |
| 486 | return DBs.DBs[AliasType.ALIAS_X86_32] |
| 487 | elif (ComparisonName.lower() == "x86_64"): |
| 488 | return DBs.DBs[AliasType.ALIAS_X86_64] |
| 489 | elif (ComparisonName.lower() == "win32"): |
| 490 | return DBs.DBs[AliasType.ALIAS_WIN32] |
| 491 | elif (ComparisonName.lower() == "win64"): |
| 492 | return DBs.DBs[AliasType.ALIAS_WIN64] |
| 493 | elif (ComparisonName.lower() == "aarch64"): |
| 494 | return DBs.DBs[AliasType.ALIAS_AARCH64] |
| 495 | |
| 496 | def PrintMissingMembers(Struct1, Struct2): |
| 497 | for Member1 in Struct1.Members: |