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.

43 lines
1.1 KiB

  1. // Copyright (c) 2000 Microsoft Corporation
  2. #ifdef DEBUG
  3. #define DESCRIPTION_STRING "DirectSound3D LUT (internal)\0"
  4. #elif defined(RDEBUG)
  5. #define DESCRIPTION_STRING "DirectSound3D LUT (debug)\0"
  6. #else
  7. #define DESCRIPTION_STRING "DirectSound3D LUT\0"
  8. #endif
  9. // In any debug build, DBG must be defined as 1, to make ntverp.h
  10. // set up the version resource correctly with the VS_FF_DEBUG flag:
  11. #if (defined(DEBUG) || defined(RDEBUG)) && !defined(DBG)
  12. #define DBG 1
  13. #endif
  14. #include <winver.h>
  15. #ifdef WINNT
  16. #include <ntverp.h>
  17. #define VER_FILETYPE VFT_DLL
  18. #define VER_FILESUBTYPE VFT2_UNKNOWN
  19. #define VER_FILEDESCRIPTION_STR DESCRIPTION_STRING
  20. #define VER_INTERNALNAME_STR VER_FILEDESCRIPTION_STR
  21. #define VER_ORIGINALFILENAME_STR "dsound3d.dll"
  22. #include "common.ver"
  23. #else // Win9x
  24. #include <verinfo.h>
  25. #define VERSIONNAME "dsound3d.dll\0"
  26. #define VERSIONDESCRIPTION DESCRIPTION_STRING
  27. #define VERSIONTYPE VFT_DLL
  28. #define VERSIONSUBTYPE VFT2_UNKNOWN
  29. #include "verinfo.ver"
  30. #endif