Created
August 9, 2021 11:29
-
-
Save cihansol/43833e9262eb6f8946fbd8fe61fb7d2d to your computer and use it in GitHub Desktop.
Xamarin Bundle Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct assembly_bundle_entry32 | |
| { | |
| UInt32 bundleNamePtr; | |
| UInt32 bundleGzDataPtr; | |
| UInt32 bundleGzDataUncompressed; | |
| UInt32 bundleGzDataCompressed; | |
| }; | |
| struct assembly_bundle_entry64 | |
| { | |
| UInt64 bundleNamePtr; | |
| UInt64 bundleGzDataPtr; | |
| UInt64 bundleGzDataUncompressed; | |
| UInt64 bundleGzDataCompressed; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment