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.

41 lines
1.1 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: cmver.h
  4. //
  5. // Module: CMSETUP.LIB
  6. //
  7. // Synopsis: Definition of CmVersion, a utility class that helps in detecting
  8. // the version of Connection Manager that is installed.
  9. //
  10. // Copyright (c) 1998-1999 Microsoft Corporation
  11. //
  12. // Author: a-anasj Created 02/11/98
  13. // quintinb Cleaned Up and removed CRegValue 07/14/98
  14. // quintinb Rewrote 09/14/98
  15. //
  16. //+----------------------------------------------------------------------------
  17. #ifndef __CMVER_H
  18. #define __CMVER_H
  19. #include <windows.h>
  20. #include <tchar.h>
  21. #include <stdlib.h>
  22. const int c_CmMin13Version = 2450;
  23. const int c_CmFirstUnicodeBuild = 2041;
  24. class CmVersion : public CVersion
  25. {
  26. public: // Public Methods
  27. CmVersion();
  28. ~CmVersion();
  29. BOOL GetInstallLocation (LPTSTR szStr);
  30. private: // Member Variables
  31. TCHAR m_szCmmgrPath[MAX_PATH+1]; // this actually contains the install location path
  32. };
  33. #endif // __CMVER_H