Leaked source code of windows server 2003
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.

47 lines
1.0 KiB

  1. //==========================================================================;
  2. //
  3. // msacmmap.rcv
  4. //
  5. // Copyright (c) 1992-1999 Microsoft Corporation
  6. //
  7. // Description:
  8. //
  9. //
  10. // History:
  11. // 9/18/93 cjp [curtisp]
  12. //
  13. //==========================================================================;
  14. #ifdef WINNT
  15. #include <windows.h>
  16. #include <ntverp.h>
  17. #define VER_FILETYPE VFT_DRV
  18. #define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE
  19. #define VER_FILEDESCRIPTION_STR "Microsoft Sound Mapper"
  20. #define VER_ORIGINALFILENAME_STR "msacm32.acm"
  21. #define VER_INTERNALNAME_STR VER_FILEDESCRIPTION_STR
  22. #include "common.ver"
  23. #else // !WINNT (Win9x)
  24. #include <winver.h>
  25. #include <verinfo.h>
  26. #define VERSIONNAME "msacm32.drv\0"
  27. #define VERSIONDESCRIPTION "Microsoft Sound Mapper\0"
  28. #define VERSIONTYPE VFT_DRV
  29. #define VERSIONSUBTYPE VFT2_DRV_INSTALLABLE
  30. #include <verinfo.ver>
  31. #endif // !WINNT (Win9x)