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.

31 lines
924 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1999.
  5. //
  6. // File: I N S T A L L . H
  7. //
  8. // Contents: Implements actions related to installing components.
  9. //
  10. // Notes:
  11. //
  12. // Author: shaunco 15 Jan 1999
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. #include "comp.h"
  17. #include "ncnetcfg.h"
  18. struct COMPONENT_INSTALL_PARAMS
  19. {
  20. IN NETCLASS Class;
  21. IN PCWSTR pszInfId;
  22. IN PCWSTR pszInfFile; OPTIONAL
  23. IN const OBO_TOKEN* pOboToken; OPTIONAL
  24. IN const NETWORK_INSTALL_PARAMS* pnip; OPTIONAL
  25. IN HWND hwndParent; OPTIONAL
  26. IN CComponent* pComponent; OPTIONAL
  27. };