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.

41 lines
963 B

  1. /***************************************************************************
  2. **
  3. ** File: verdef.h
  4. ** Purpose: Defines values used in the version data structure for
  5. ** all files, and which do not change.
  6. ** Notes:
  7. **
  8. ****************************************************************************/
  9. #ifndef VERSION_H
  10. #define VERSION_H
  11. #ifndef VS_FF_DEBUG
  12. #ifdef _RC32
  13. #include <winver.h>
  14. #else
  15. /* ver.h defines constants needed by the VS_VERSION_INFO structure */
  16. #include <ver.h>
  17. #endif /* _RC32 */
  18. #endif
  19. /*--------------------------------------------------------------*/
  20. /* default is official */
  21. #ifdef PRIVATEBUILD
  22. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  23. #else
  24. #define VER_PRIVATEBUILD 0
  25. #endif
  26. /* default is final */
  27. #ifdef PRERELEASE
  28. #define VER_PRERELEASE VS_FF_PRERELEASE
  29. #else
  30. #define VER_PRERELEASE 0
  31. #endif
  32. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  33. #endif /* VERSION_H */