aboutsummaryrefslogtreecommitdiff
path: root/libs/winreg.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/winreg.py')
-rw-r--r--libs/winreg.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/winreg.py b/libs/winreg.py
index 2ecbb1f..d0012e7 100644
--- a/libs/winreg.py
+++ b/libs/winreg.py
@@ -10,5 +10,16 @@ def OpenKey(*_args, **_kwargs):
raise FileNotFoundError("winreg is not available on this platform")
+OpenKeyEx = OpenKey
+
+
def QueryValueEx(*_args, **_kwargs):
raise FileNotFoundError("winreg is not available on this platform")
+
+
+def QueryInfoKey(*_args, **_kwargs):
+ raise FileNotFoundError("winreg is not available on this platform")
+
+
+def EnumKey(*_args, **_kwargs):
+ raise FileNotFoundError("winreg is not available on this platform")