add comment about dsound default devices
This commit is contained in:
parent
d485a4b36d
commit
2048a0a62f
1 changed files with 2 additions and 2 deletions
|
|
@ -1564,7 +1564,7 @@ static PaError ScanDeviceInfos( struct PaUtilHostApiRepresentation *hostApi, PaH
|
|||
else
|
||||
winDsDeviceInfo->inheritedDeviceInfo.connectionId = PaUtil_MakeDeviceConnectionId();
|
||||
|
||||
if( deviceNamesAndGUIDs.inputNamesAndGUIDs.items[i].lpGUID == NULL )
|
||||
if( deviceNamesAndGUIDs.inputNamesAndGUIDs.items[i].lpGUID == NULL ) /* "Primary Sound Capture Driver" */
|
||||
outArgument->defaultInputDevice = *newDeviceCount;
|
||||
(*newDeviceCount)++;
|
||||
}
|
||||
|
|
@ -1589,7 +1589,7 @@ static PaError ScanDeviceInfos( struct PaUtilHostApiRepresentation *hostApi, PaH
|
|||
else
|
||||
winDsDeviceInfo->inheritedDeviceInfo.connectionId = PaUtil_MakeDeviceConnectionId();
|
||||
|
||||
if( deviceNamesAndGUIDs.outputNamesAndGUIDs.items[i].lpGUID == NULL )
|
||||
if( deviceNamesAndGUIDs.outputNamesAndGUIDs.items[i].lpGUID == NULL ) /* "Primary Sound Driver" */
|
||||
outArgument->defaultOutputDevice = *newDeviceCount;
|
||||
(*newDeviceCount)++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue