(hkey: PyRef<PyHkey>, vm: &VirtualMachine)
| 365 | |
| 366 | #[pyfunction] |
| 367 | fn CloseKey(hkey: PyRef<PyHkey>, vm: &VirtualMachine) -> PyResult<()> { |
| 368 | hkey.Close(vm) |
| 369 | } |
| 370 | |
| 371 | #[pyfunction] |
| 372 | fn DeleteKey(key: PyRef<PyHkey>, sub_key: String, vm: &VirtualMachine) -> PyResult<()> { |