| 99 | #[repr(C)] |
| 100 | #[derive(Copy, Clone, Default, PartialEq, Debug, Eq)] |
| 101 | pub struct ApiSetNamespaceEntry { |
| 102 | pub unused1: [u8;4], |
| 103 | pub name_offset: i32, // offset 0x04 |
| 104 | pub name_length: i32, // offset 0x08 |
| 105 | pub unused2: [u8;4], |
| 106 | pub value_offset: i32, // offset 0x10 |
| 107 | pub value_length: i32, // offset 0x14 |
| 108 | } |
| 109 | |
| 110 | #[repr(C)] |
| 111 | #[derive(Copy, Clone, Default, PartialEq, Debug, Eq)] |
nothing calls this directly
no outgoing calls
no test coverage detected