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.

28 lines
594 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // @doc
  4. //
  5. // @module ppmgrver.h
  6. //
  7. // Author: mikeguo
  8. //
  9. // Date: 2/22/2001
  10. //
  11. // Copyright <cp> 1999-2001 Microsoft Corporation. All Rights Reserved.
  12. //
  13. // header file to contain ppmgr version structure.
  14. //
  15. //-----------------------------------------------------------------------------
  16. #pragma once
  17. class PPMGRVer
  18. {
  19. public:
  20. PPMGRVer() { MajorVersion = 0; }
  21. ULONG MajorVersion;
  22. /* FUTURE: following aren't needed in 2.0
  23. ULONG Minor1;
  24. ULONG Minor2;
  25. ULONG Minor3;
  26. */
  27. };