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.

48 lines
954 B

  1. // Copyright (c) 1997-2001 Microsoft Corporation
  2. //
  3. // File: MediaInstallationUnit.h
  4. //
  5. // Synopsis: Declares a MediaInstallationUnit
  6. // This object has the knowledge for installing the
  7. // Streaming media service
  8. //
  9. // History: 02/06/2001 JeffJon Created
  10. #ifndef __CYS_MEDIAINSTALLATIONUNIT_H
  11. #define __CYS_MEDIAINSTALLATIONUNIT_H
  12. #include "InstallationUnit.h"
  13. class MediaInstallationUnit : public InstallationUnit
  14. {
  15. public:
  16. // Constructor
  17. MediaInstallationUnit();
  18. // Destructor
  19. virtual
  20. ~MediaInstallationUnit();
  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. virtual
  32. String
  33. GetServiceDescription();
  34. };
  35. #endif // __CYS_MEDIAINSTALLATIONUNIT_H