| 1 |
cpp_quote("/**") |
| 2 |
cpp_quote(" * This file is part of the mingw-w64 runtime package.") |
| 3 |
cpp_quote(" * No warranty is given; refer to the file DISCLAIMER within this package.") |
| 4 |
cpp_quote(" */") |
| 5 |
cpp_quote("") |
| 6 |
|
| 7 |
import "unknwn.idl"; |
| 8 |
|
| 9 |
cpp_quote("#include <winapifamily.h>") |
| 10 |
cpp_quote("") |
| 11 |
cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)") |
| 12 |
[object, local, uuid (784cfd40-9f89-456e-A1A6-873b006a664e), nonextensible, helpstring ("IAudioEndpointFormat interface"), pointer_default (unique)] |
| 13 |
interface IAudioEndpointFormatControl : IUnknown { |
| 14 |
[helpstring ("method ResetToDefault")] |
| 15 |
HRESULT ResetToDefault ([in] DWORD ResetFlags); |
| 16 |
}; |
| 17 |
|
| 18 |
cpp_quote("") |
| 19 |
cpp_quote("#define ENDPOINT_FORMAT_RESET_MIX_ONLY 0x1") |
| 20 |
cpp_quote("#endif") |