Merge pull request #7508 from Kelimion/wasapi

WASAPI fixes
This commit is contained in:
Jeroen van Rijn
2026-09-02 13:28:39 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ IMMDeviceEnumerator_VTable :: struct {
This: ^IMMDeviceEnumerator,
dataFlow: EDataFlow,
dwStateMask: windows.DWORD,
ppDevices: [^]IMMDeviceCollection, // Out
ppDevices: ^[^]IMMDeviceCollection, // Out
) -> windows.HRESULT,
GetDefaultAudioEndpoint: proc "system" (

View File

@@ -14,7 +14,7 @@ REFERENCE_TIME :: windows.LONGLONG
//
AUDCLNT_SHAREMODE :: enum u32 {
SHARED,
EXCLUSIVE
EXCLUSIVE,
}
//-------------------------------------------------------------------------