[pywin32-checkins] pywin32/win32/Lib mmsystem.py,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-01-10 04:29:58
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6347/win32/Lib Modified Files: mmsystem.py Log Message: [ 1043731 ] New mmsystem.py constants Index: mmsystem.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/mmsystem.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mmsystem.py 2 Sep 1999 00:19:28 -0000 1.1 --- mmsystem.py 10 Jan 2006 04:29:49 -0000 1.2 *************** *** 141,144 **** --- 141,145 ---- WIM_CLOSE = MM_WIM_CLOSE WIM_DATA = MM_WIM_DATA + WAVE_MAPPER = 0xFFFFFFFFL WAVE_FORMAT_QUERY = 0x0001 WAVE_ALLOWSYNC = 0x0002 *************** *** 172,175 **** --- 173,177 ---- WAVE_FORMAT_4S16 = 0x00000800 WAVE_FORMAT_PCM = 1 + WAVE_FORMAT_IEEE_FLOAT = 3 MIDIERR_UNPREPARED = (MIDIERR_BASE + 0) MIDIERR_STILLPLAYING = (MIDIERR_BASE + 1) |