__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from ctypes import c_void_p
from ctypes import Structure
from ctypes import Union
from ctypes.wintypes import DWORD
from ctypes.wintypes import HANDLE
# Definitions for OVERLAPPED.
# Refer: https://docs.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-overlapped
class _DummyStruct(Structure):
_fields_ = [
('Offset', DWORD),
('OffsetHigh', DWORD),
]
class _DummyUnion(Union):
_fields_ = [
('_offsets', _DummyStruct),
('Pointer', c_void_p),
]
class OVERLAPPED(Structure):
_fields_ = [
('Internal', c_void_p),
('InternalHigh', c_void_p),
('_offset_or_ptr', _DummyUnion),
('hEvent', HANDLE),
]
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 163 B | 0644 |
|
| pywintypes.py | File | 701 B | 0644 |
|
| win32con.py | File | 64 B | 0644 |
|
| win32file.py | File | 890 B | 0644 |
|