(key, path, index, access)
| 68 | |
| 69 | s = System() |
| 70 | def OpenKey(key, path, index, access): |
| 71 | if s.isx64: |
| 72 | return _winreg.OpenKey(key, path, index, access | _winreg.KEY_WOW64_64KEY) |
| 73 | else: |
| 74 | return _winreg.OpenKey(key, path, index, access) |
no outgoing calls
no test coverage detected