[pywin32-checkins] pywin32/com/win32comext/directsound/src PyIDirectSound.cpp,1.3,1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Lars I. <lar...@us...> - 2005-03-10 23:24:09
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/directsound/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6586/win32comext/directsound/src Modified Files: PyIDirectSound.cpp Log Message: Added AutoDuck doc comments. (Either I don't get AutoDuck or it sucks) Index: PyIDirectSound.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/directsound/src/PyIDirectSound.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PyIDirectSound.cpp 7 Mar 2005 22:18:45 -0000 1.3 --- PyIDirectSound.cpp 10 Mar 2005 23:23:58 -0000 1.4 *************** *** 34,38 **** if ( pIDS == NULL ) return NULL; ! if ( !PyArg_ParseTuple(args, "|O:Initialize", &obGUID) ) return NULL; --- 34,40 ---- if ( pIDS == NULL ) return NULL; ! if ( !PyArg_ParseTuple(args, "|O:Initialize", ! &obGUID) ) // @pyparm <o PyIID>|guid||Globally unique identifier (GUID) specifying the sound driver to which this DirectSound object binds. Pass None to select the primary sound driver. ! return NULL; *************** *** 72,76 **** if ( pIDS == NULL ) return NULL; ! if ( !PyArg_ParseTuple(args, "Oi:SetCooperativeLevel", &obHWND, &level) ) return NULL; --- 74,80 ---- if ( pIDS == NULL ) return NULL; ! if ( !PyArg_ParseTuple(args, "Oi:SetCooperativeLevel", ! &obHWND, // @pyparm int|hwnd||Window handle to the application or None. ! &level) ) // @pyparm int|level||Requested priority level. See the DSSCL constants. return NULL; *************** *** 234,238 **** if ( pIDS == NULL ) return NULL; ! if ( !PyArg_ParseTuple(args, "i:SetSpeakerConfig", &config) ) return NULL; --- 238,243 ---- if ( pIDS == NULL ) return NULL; ! if ( !PyArg_ParseTuple(args, "i:SetSpeakerConfig", ! &config) ) // @pyparm int|dwSpeakerConfig||Speaker configuration of the specified DirectSound object. See the DSSPEAKER constants. return NULL; |