# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ PlaySound(sound, flags) - play a sound SND_FILENAME - sound is a wav file name SND_ALIAS - sound is a registry sound association name SND_LOOP - Play the sound repeatedly; must also specify SND_ASYNC SND_MEMORY - sound is a memory image of a wav file SND_PURGE - stop all instances of the specified sound SND_ASYNC - PlaySound returns immediately SND_NODEFAULT - Do not play a default beep if the sound can not be found SND_NOSTOP - Do not interrupt any sounds currently playing SND_NOWAIT - Return immediately if the sound driver is busy Beep(frequency, duration) - Make a beep through the PC speaker. """ def Beep(frequency, duration): """ Beep(frequency, duration) - a wrapper around the Windows Beep API The frequency argument specifies frequency, in hertz, of the sound. This parameter must be in the range 37 through 32,767. The duration argument specifies the number of milliseconds. """ pass MB_ICONASTERISK = None MB_ICONEXCLAMATION = None MB_ICONHAND = None MB_ICONQUESTION = None MB_OK = None def MessageBeep(x): """ MessageBeep(x) - call Windows MessageBeep(x). x defaults to MB_OK. """ pass def PlaySound(sound, flags): """ PlaySound(sound, flags) - a wrapper around the Windows PlaySound API The sound argument can be a filename, data, or None. For flag values, ored together, see module documentation. """ pass SND_ALIAS = None SND_APPLICATION = None SND_ASYNC = None SND_FILENAME = None SND_LOOP = None SND_MEMORY = None SND_NODEFAULT = None SND_NOSTOP = None SND_NOWAIT = None SND_PURGE = None __doc__ = """PlaySound(sound, flags) - play a sound SND_FILENAME - sound is a wav file name SND_ALIAS - sound is a registry sound association name SND_LOOP - Play the sound repeatedly; must also specify SND_ASYNC SND_MEMORY - sound is a memory image of a wav file SND_PURGE - stop all instances of the specified sound SND_ASYNC - PlaySound returns immediately SND_NODEFAULT - Do not play a default beep if the sound can not be found SND_NOSTOP - Do not interrupt any sounds currently playing SND_NOWAIT - Return immediately if the sound driver is busy Beep(frequency, duration) - Make a beep through the PC speaker.""" __file__ = 'C:\\src\\ide\\build-files\\build-temp\\runtimes-release\\__os__\\win32\\runtime-python2.7\\DLLs\\winsound.pyd' __name__ = 'winsound' __package__ = None