1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
use die::*; use types::*; #[derive(Clone, Copy)] #[repr(C)] pub struct DieListNode_t { pub Data: Die_t, pub Prev: *mut DieListNode_t, pub Next: *mut DieListNode_t, } #[derive(Clone, Copy)] #[repr(C)] pub struct DieList_t { pub Size: Quantity_t, pub First: *mut DieListNode_t, pub Last: *mut DieListNode_t, }