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.
33 lines
604 B
33 lines
604 B
/*++
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
PiHotSwap.h
|
|
|
|
Abstract:
|
|
|
|
This header contains private prototypes for managing hotswappable devices.
|
|
This file should be included only by PpHotSwap.c.
|
|
|
|
Author:
|
|
|
|
Adrian J. Oney (AdriaO) 02/10/2001
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
VOID
|
|
PiHotSwapGetDetachableNode(
|
|
IN PDEVICE_NODE DeviceNode,
|
|
OUT PDEVICE_NODE *DetachableNode
|
|
);
|
|
|
|
VOID
|
|
PiHotSwapGetDefaultBusRemovalPolicy(
|
|
IN PDEVICE_NODE DeviceNode,
|
|
OUT PDEVICE_REMOVAL_POLICY RemovalPolicy
|
|
);
|
|
|