2 instantiations of WAVEOUTCAPS
System.Speech (2)
Internal\Synthesis\AudioDeviceOut.cs (1)
312
Interop.WinMM.WAVEOUTCAPS caps =
new
();
src\runtime\src\libraries\Common\src\Interop\Windows\WinMm\Interop.waveOutGetDevCaps.cs (1)
70
new
WAVEOUTCAPS
13 references to WAVEOUTCAPS
System.Speech (13)
_generated\0\LibraryImports.g.cs (5)
16
internal static partial global::Interop.WinMM.MMSYSERR waveOutGetDevCaps(nint uDeviceID, ref global::Interop.WinMM.
WAVEOUTCAPS
caps, int cbwoc)
20
global::Interop.WinMM.
WAVEOUTCAPS
.Marshaller.Native __caps_native;
23
__caps_native = global::Interop.WinMM.
WAVEOUTCAPS
.Marshaller.ConvertToUnmanaged(caps);
29
caps = global::Interop.WinMM.
WAVEOUTCAPS
.Marshaller.ConvertToManaged(__caps_native);
34
static extern unsafe global::Interop.WinMM.MMSYSERR __PInvoke(nint __uDeviceID_native, global::Interop.WinMM.
WAVEOUTCAPS
.Marshaller.Native* __caps_native, int __cbwoc_native);
Internal\Synthesis\AudioDeviceOut.cs (2)
312
Interop.WinMM.
WAVEOUTCAPS
caps = new();
314
Interop.WinMM.MMSYSERR result = Interop.WinMM.waveOutGetDevCaps((IntPtr)deviceId, ref caps, Marshal.SizeOf<Interop.WinMM.
WAVEOUTCAPS
>());
src\runtime\src\libraries\Common\src\Interop\Windows\WinMm\Interop.waveOutGetDevCaps.cs (6)
32
[CustomMarshaller(typeof(
WAVEOUTCAPS
), MarshalMode.Default, typeof(Marshaller))]
35
public static Native ConvertToUnmanaged(
WAVEOUTCAPS
managed) => new(managed);
36
public static
WAVEOUTCAPS
ConvertToManaged(Native native) => native.ToManaged();
55
public Native(
WAVEOUTCAPS
managed)
69
public
WAVEOUTCAPS
ToManaged() =>
100
internal static partial MMSYSERR waveOutGetDevCaps(IntPtr uDeviceID, ref
WAVEOUTCAPS
caps, int cbwoc);