pcUnregisterAdapterPowerManagement 函数 (portcls.h)

PcUnregisterAdapterPowerManagement 函数从 PortCls 类驱动程序取消注册音频适配器的电源管理接口。 PcUnregisterAdapterPowerManagement 函数在 Windows 7 及更高版本的 Windows 中可用。

语法

PORTCLASSAPI NTSTATUS PcUnregisterAdapterPowerManagement(
  [in] PDEVICE_OBJECT pDeviceObject
);

参数

[in] pDeviceObject

指定指向 DEVICE_OBJECT 结构的指针,该结构表示适配器的功能设备对象。

返回值

如果函数调用成功, PcUnregisterAdapterPowerManagement 函数将返回STATUS_SUCCESS。 否则,它将返回相应的错误代码。

注解

PcUnregisterAdapterPowerManagement 函数使用 PcRegisterAdapterPowerManagement 函数取消注册到 PortCls 的驱动程序的电源管理接口。 PcUnregisterAdapterPowerManagement 可帮助系统避免在适配器驱动程序卸载时发出电源更改请求。 仅当适配器的电源管理接口以前已注册到 PortCls 时,才必须调用此函数。

要求

要求
最低受支持的客户端 在 Windows 7 和更高版本的 Windows 中可用。
目标平台 通用
标头 portcls.h (包括 Portcls.h)
Library Portcls.lib
IRQL PASSIVE_LEVEL。

另请参阅

DEVICE_OBJECT

PcRegisterAdapterPowerManagement