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.

39 lines
755 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Abstract:
  4. @doc
  5. @module versionspecific.cpp | All conditionally-compiled code lives here
  6. @end
  7. Author:
  8. Reuven Lax [reuvenl] 11/28/01
  9. TBD:
  10. Add comments.
  11. Revision History:
  12. Name Date Comments
  13. reuvenl 11/28/2001 Created
  14. --*/
  15. /////////////////////////////////////////////////////////////////////////////
  16. // Includes
  17. #include "vssadmin.h"
  18. #include "versionspecific.h"
  19. /////////////////////////////////////////////////////////////////////////////
  20. // Define current SKU
  21. #ifdef FULLFEATURE
  22. DWORD dCurrentSKU = (!CVssSKU::IsClient()) ? SKU_INT : CVssSKU::GetSKU();
  23. #else
  24. DWORD dCurrentSKU = CVssSKU::GetSKU();
  25. #endif