| 21 | /// Represents a registry key including its properties. |
| 22 | #[derive(Clone)] |
| 23 | pub struct RegistryKey { |
| 24 | pub handle: HANDLE, |
| 25 | pub path: String, |
| 26 | pub name: String, |
| 27 | pub sub_key_count: u32, |
| 28 | pub max_key_name_len: u32, |
| 29 | pub value_count: u32, |
| 30 | pub max_value_name_len: u32, |
| 31 | pub max_data_len: u32, |
| 32 | } |
| 33 | |
| 34 | impl RegistryKey { |
| 35 | /// Returns a RegistryKey object for a valid existing path. |
no outgoing calls
no test coverage detected