audioendpoints.idl 732 B

1234567891011121314151617181920
  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. import "unknwn.idl";
  7. cpp_quote("#include <winapifamily.h>")
  8. cpp_quote("")
  9. cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)")
  10. [object, local, uuid (784cfd40-9f89-456e-A1A6-873b006a664e), nonextensible, helpstring ("IAudioEndpointFormat interface"), pointer_default (unique)]
  11. interface IAudioEndpointFormatControl : IUnknown {
  12. [helpstring ("method ResetToDefault")]
  13. HRESULT ResetToDefault ([in] DWORD ResetFlags);
  14. };
  15. cpp_quote("")
  16. cpp_quote("#define ENDPOINT_FORMAT_RESET_MIX_ONLY 0x1")
  17. cpp_quote("#endif")