# encoding: utf-8
# module timer
# from C:\Programs\Python\Python311\Lib\site-packages\win32\timer.pyd
# by generator 1.147
""" Extension that wraps Win32 Timer functions """

# imports
from pywintypes import error


# Variables with simple values

__version__ = b'0.2'

# functions

def kill_timer(timer_id): # real signature unknown; restored from __doc__
    """
    boolean = kill_timer(timer_id)
    Stops a timer
    """
    pass

def set_timer(milliseconds, callback, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
    """
    int = set_timer(milliseconds, callback}
    Creates a timer that executes a callback function
    """
    pass

# no classes
# variables with complex values

__loader__ = None # (!) real value is '<_frozen_importlib_external.ExtensionFileLoader object at 0x000002156695C950>'

__spec__ = None # (!) real value is "ModuleSpec(name='timer', loader=<_frozen_importlib_external.ExtensionFileLoader object at 0x000002156695C950>, origin='C:\\\\Programs\\\\Python\\\\Python311\\\\Lib\\\\site-packages\\\\win32\\\\timer.pyd')"

