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,27 @@
use crate::vars::Callbacks;
// Callback Information for Enumeration (Output)
#[repr(C)]
#[derive(Debug)]
pub struct CallbackInfoOutput {
pub address: usize,
pub name: [u16; 256],
pub index: u8,
}
// Callback Information for Action (Input)
#[repr(C)]
#[derive(Debug)]
pub struct CallbackInfoInput {
pub index: usize,
pub callback: Callbacks
}
//
#[repr(C)]
#[derive(Debug)]
pub struct CallbackRestaure {
pub index: usize,
pub callback: Callbacks,
pub address: u64,
}