mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
15 lines
372 B
Python
15 lines
372 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
|