Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
976 B

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: dpvxdump.h
  6. * Content: Useful dump utility functions for sample apps
  7. *
  8. * History:
  9. * Date By Reason
  10. * ==== == ======
  11. * 10/07/99 rodtoll Created It
  12. *
  13. ***************************************************************************/
  14. #ifndef __DPVXDUMP_H
  15. #define __DPVXDUMP_H
  16. // Structure -> String Conversions
  17. extern void DPVDX_DUMP_GUID( GUID guid, LPSTR lpstrOutput, LPDWORD lpdwLength );
  18. extern void DPVDX_DUMP_WaveFormatEx( LPWAVEFORMATEX lpwfxFormat );
  19. extern void DPVDX_DUMP_SoundDeviceConfig( LPDVSOUNDDEVICECONFIG lpdvSoundConfig);
  20. extern void DPVDX_DUMP_FullCompressionInfo( LPDVCOMPRESSIONINFO lpdvfCompressionInfo, DWORD dwNumElements );
  21. extern void DPVDX_DUMP_ClientConfig( LPDVCLIENTCONFIG lpdvClientConfig );
  22. extern void DPVDX_DUMP_SessionDesc( LPDVSESSIONDESC lpdvSessionDesc );
  23. #endif