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.

53 lines
1.3 KiB

  1. //==========================================================================;
  2. //
  3. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. // PURPOSE.
  7. //
  8. // Copyright (c) 1992-1999 Microsoft Corporation
  9. //
  10. //--------------------------------------------------------------------------;
  11. //
  12. // msadpcm.rcv
  13. //
  14. // Description:
  15. // This file contains version defines for the codec.
  16. //
  17. //
  18. //==========================================================================;
  19. #ifdef WINNT
  20. #include <windows.h>
  21. #include <ntverp.h>
  22. #define VER_FILETYPE VFT_DRV
  23. #define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE
  24. #define VER_FILEDESCRIPTION_STR "Microsoft ADPCM CODEC for MSACM"
  25. #define VER_ORIGINALFILENAME_STR "msadp32.acm"
  26. #define VER_INTERNALNAME_STR VER_FILEDESCRIPTION_STR
  27. #include "common.ver"
  28. #else // !WINNT (Win9x)
  29. #include <winver.h>
  30. #include <verinfo.h>
  31. #define VERSIONNAME "msadp32.acm\0"
  32. #define VERSIONDESCRIPTION "Microsoft ADPCM CODEC for MSACM\0"
  33. #define VERSIONTYPE VFT_DRV
  34. #define VERSIONSUBTYPE VFT2_DRV_INSTALLABLE
  35. #include <verinfo.ver>
  36. #endif // !WINNT (Win9x)