schnauzer/types/load_command/
symseg_command.rs1use scroll::{IOread, SizeWith};
2
3use std::fmt::Debug;
4
5use crate::auto_enum_fields::*;
6use schnauzer_derive::AutoEnumFields;
7
8#[repr(C)]
10#[derive(Debug, IOread, SizeWith, AutoEnumFields)]
11pub struct LcSymSeg {
12 pub offset: u32,
13 pub size: u32,
14}