Renaming structure files

This commit is contained in:
João
2024-07-26 19:45:52 -03:00
parent a5083162b6
commit 5131b84b7e
9 changed files with 26 additions and 13 deletions

View File

@@ -0,0 +1,8 @@
// Enumerate Modules
#[repr(C)]
#[derive(Debug)]
pub struct ModuleInfo {
pub address: usize,
pub name: [u16; 256],
pub index: u8,
}