| 174 | #[repr(C)] |
| 175 | #[derive(Copy, Clone, Default, PartialEq, Debug, Eq)] |
| 176 | pub struct ApiSetNamespaceEntry { |
| 177 | pub unused1: [u8;4], |
| 178 | pub name_offset: i32, // offset 0x04 |
| 179 | pub name_length: i32, // offset 0x08 |
| 180 | pub unused2: [u8;4], |
| 181 | pub value_offset: i32, // offset 0x10 |
| 182 | pub value_length: i32, // offset 0x14 |
| 183 | } |
| 184 | |
| 185 | #[repr(C)] |
| 186 | #[derive(Copy, Clone, Default, PartialEq, Debug, Eq)] |
nothing calls this directly
no outgoing calls
no test coverage detected