add struct to parse whole dex file

This commit is contained in:
Jean-Marie Mineau 2023-08-30 17:17:11 +02:00
parent df2a441148
commit 6562c3f6c0
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
4 changed files with 284 additions and 1 deletions

View file

@ -3,6 +3,7 @@ pub mod array;
pub mod constant;
pub mod core;
pub mod debug;
pub mod file_reader;
pub mod items;
pub mod value;
@ -15,3 +16,5 @@ pub use constant::*;
pub use debug::*;
pub use items::*;
pub use value::*;
pub use file_reader::*;