This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import annotations | |
| import ctypes | |
| import os | |
| import base64 | |
| import struct | |
| import sys | |
| import tempfile | |
| from ctypes import wintypes | |
| if sys.platform != 'win32': | |
| sys.exit(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import annotations | |
| import ctypes | |
| import os | |
| import base64 | |
| import struct | |
| import sys | |
| import tempfile | |
| from ctypes import wintypes | |
| if sys.platform != 'win32': | |
| sys.exit(1) |