schnauzer/types/load_command/
note_command.rs

1use scroll::{IOread, SizeWith};
2
3use std::fmt::Debug;
4
5use crate::auto_enum_fields::*;
6use schnauzer_derive::AutoEnumFields;
7
8/// `note_command`
9#[repr(C)]
10#[derive(Debug, IOread, SizeWith, AutoEnumFields)]
11pub struct LcNote {
12    pub data_owner: [u8; 16],
13    pub offset: u64,
14    pub size: u64,
15}