Hello Good morning, I am reviewing the windows documentation for listing audio devices with rust.
In the documentation we get the following code, written in C++
const CLSID CLSID_MMDeviceEnumerator = __uuidof(MMDeviceEnumerator);
const IID IID_IMMDeviceEnumerator = __uuidof(IMMDeviceEnumerator);
hr = CoCreateInstance(
CLSID_MMDeviceEnumerator, NULL,
CLSCTX_ALL, IID_IMMDeviceEnumerator,
(void**)&pEnumerator);
when I try to look it up in the windows-sys library I only get the MMDeviceEnumerator enumerator and not IMMDeviceEnumerator.