1
0

ACM.hpp 628 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef ACM_HPP
  2. #define ACM_HPP
  3. #include <windows.h>
  4. #include <vfw.h>
  5. #include <string>
  6. #include <iosfwd>
  7. namespace ACM
  8. {
  9. const std::string versionAsStr(DWORD version);
  10. const std::string supportAsStr(DWORD support);
  11. std::ostream& operator<<(std::ostream&, const ACMDRIVERDETAILS&);
  12. std::ostream& operator<<(std::ostream&, const WAVEFORMATEX&);
  13. const std::string mmresultAsStr(MMRESULT);
  14. std::ostream& operator<<(
  15. std::ostream&,
  16. const ACMFORMATTAGDETAILS&);
  17. std::ostream& operator<<(
  18. std::ostream&,
  19. const ACMFORMATDETAILS&);
  20. }
  21. #endif