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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1999.
//
// File: I N S T A L L . H
//
// Contents: Implements actions related to installing components.
//
// Notes:
//
// Author: shaunco 15 Jan 1999
//
//----------------------------------------------------------------------------
#pragma once
#include "comp.h"
#include "ncnetcfg.h"
struct COMPONENT_INSTALL_PARAMS { IN NETCLASS Class; IN PCWSTR pszInfId; IN PCWSTR pszInfFile; OPTIONAL IN const OBO_TOKEN* pOboToken; OPTIONAL IN const NETWORK_INSTALL_PARAMS* pnip; OPTIONAL IN HWND hwndParent; OPTIONAL IN CComponent* pComponent; OPTIONAL };
|