Files
hakril-PythonForWindows/__init__.py
T
2015-04-13 15:56:25 +02:00

22 lines
548 B
Python

"""
Windows for Python
A lot of python object to help navigate windows stuff
Exported:
system : :class:`windows.winobject.System`
current_process : :class:`windows.winobject.CurrentProcess`
current_thread : :class:`windows.winobject.CurrentThread`
"""
import k32testing
from winobject import System, CurrentProcess, CurrentThread
from utils import VirtualProtected
system = System()
current_process = CurrentProcess()
current_thread = CurrentThread()
__all__ = ["system", "VirtualProtected", 'current_process', 'current_thread']