File: regutil.pyi

package info (click to toggle)
typeshed 0.0~git20221107.4f381af-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,036 kB
  • sloc: python: 3,216; sh: 62; makefile: 13
file content (27 lines) | stat: -rw-r--r-- 1,345 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from _typeshed import Incomplete

error: str
CLSIDPyFile: str
RegistryIDPyFile: str
RegistryIDPycFile: str

def BuildDefaultPythonKey(): ...
def GetRootKey(): ...
def GetRegistryDefaultValue(subkey, rootkey: Incomplete | None = ...): ...
def SetRegistryDefaultValue(subKey, value, rootkey: Incomplete | None = ...) -> None: ...
def GetAppPathsKey(): ...
def RegisterPythonExe(exeFullPath, exeAlias: Incomplete | None = ..., exeAppPath: Incomplete | None = ...) -> None: ...
def GetRegisteredExe(exeAlias): ...
def UnregisterPythonExe(exeAlias) -> None: ...
def RegisterNamedPath(name, path) -> None: ...
def UnregisterNamedPath(name) -> None: ...
def GetRegisteredNamedPath(name): ...
def RegisterModule(modName, modPath) -> None: ...
def UnregisterModule(modName) -> None: ...
def GetRegisteredHelpFile(helpDesc): ...
def RegisterHelpFile(helpFile, helpPath, helpDesc: Incomplete | None = ..., bCheckFile: int = ...) -> None: ...
def UnregisterHelpFile(helpFile, helpDesc: Incomplete | None = ...) -> None: ...
def RegisterCoreDLL(coredllName: Incomplete | None = ...) -> None: ...
def RegisterFileExtensions(defPyIcon, defPycIcon, runCommand) -> None: ...
def RegisterShellCommand(shellCommand, exeCommand, shellUserCommand: Incomplete | None = ...) -> None: ...
def RegisterDDECommand(shellCommand, ddeApp, ddeTopic, ddeCommand) -> None: ...