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.

21 lines
845 B

  1. //
  2. // NDCGVER.H
  3. // NM app sharing version for display driver/app checking
  4. //
  5. // Copyright (c) Microsoft 1997-
  6. //
  7. #define DCS_BUILD_STR "4.3.0."VERSIONBUILD_STR
  8. #define DCS_BUILD_NUMBER 0
  9. //
  10. // This allows the ring 3 code and ring 0 code to check each other, make
  11. // sure they are the same version. We're changing setup and getting close
  12. // to shipping version 2.0, we want to prevent weird faults and blue
  13. // screens caused by mismatched components. This is not something we will
  14. // do forever. When NT 5 is here, we'll dyna load and init our driver at
  15. // startup and terminate it at shutdown. But for now, since installing
  16. // one of these beasts is messsy, an extra sanity check is a good thing.
  17. //
  18. #define DCS_PRODUCT_NUMBER 3 // Version 3.0 of NM
  19. #define DCS_MAKE_VERSION() MAKELONG(VERSIONBUILD, DCS_PRODUCT_NUMBER)