This file contains 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
# This file provides a long_running decorator to indicate that a function needs a long amount of time to complete and | |
# the computer should not enter standby. This file currently only works on Windows and is a no-op on other platforms. | |
import ctypes | |
import platform | |
ES_CONTINUOUS = 0x80000000 | |
ES_SYSTEM_REQUIRED = 0x00000001 | |