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.

47 lines
994 B

  1. // Copyright (c) 1997-2001 Microsoft Corporation
  2. //
  3. // File: ExpressInstallationUnit.h
  4. //
  5. // Synopsis: Declares a ExpressInstallationUnit
  6. // This object has the knowledge for installing the
  7. // services for the express path: AD, DNS, and DHCP
  8. //
  9. // History: 02/08/2001 JeffJon Created
  10. #ifndef __CYS_EXPRESSINSTALLATIONUNIT_H
  11. #define __CYS_EXPRESSINSTALLATIONUNIT_H
  12. #include "InstallationUnit.h"
  13. class ExpressInstallationUnit : public InstallationUnit
  14. {
  15. public:
  16. // Constructor
  17. ExpressInstallationUnit();
  18. // Destructor
  19. virtual
  20. ~ExpressInstallationUnit();
  21. // Installation Unit overrides
  22. virtual
  23. InstallationReturnType
  24. InstallService(HANDLE logfileHandle, HWND hwnd);
  25. virtual
  26. bool
  27. IsServiceInstalled();
  28. virtual
  29. bool
  30. GetFinishText(String& message);
  31. HRESULT
  32. DoTapiConfig(const String& dnsName);
  33. };
  34. #endif // __CYS_EXPRESSINSTALLATIONUNIT_H