mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
Also updates: - importlib-metadata-0.7 - jaraco-windows - jaraco.classes-1.5 - jaraco.collections-1.6.0 - jaraco.functools-1.20 - jaraco.structures-1.1.2 - jaraco.text-1.10.1 - jaraco.ui-1.6 - more-itertools-4.3.0 - path.py-11.5.0 - six-1.12.0
14 lines
360 B
Python
14 lines
360 B
Python
import ctypes.wintypes
|
|
|
|
SystemParametersInfo = ctypes.windll.user32.SystemParametersInfoW
|
|
SystemParametersInfo.argtypes = (
|
|
ctypes.wintypes.UINT,
|
|
ctypes.wintypes.UINT,
|
|
ctypes.c_void_p,
|
|
ctypes.wintypes.UINT,
|
|
)
|
|
|
|
SPI_GETACTIVEWINDOWTRACKING = 0x1000
|
|
SPI_SETACTIVEWINDOWTRACKING = 0x1001
|
|
SPI_GETACTIVEWNDTRKTIMEOUT = 0x2002
|
|
SPI_SETACTIVEWNDTRKTIMEOUT = 0x2003
|