IoDeleteController - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

VOID IoDeleteController(
  [in] PCONTROLLER_OBJECT ControllerObject
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntddk-iodeletecontroller)

IoDeleteController function

Description

The IoDeleteController routine removes a given controller object from the system, for example, when the driver that created it is being unloaded.

Parameters

ControllerObject [in]

Pointer to the controller object to be released.

Remarks

IoDeleteController deallocates the memory for the controller object, including the controller extension.

This routine must be called when a driver that created a controller object is being unloaded or when the driver encounters a fatal error during device start-up, such as being unable to properly initialize a physical device.

A driver must release certain resources for which the driver supplied storage in its controller extension before it calls IoDeleteController. For example, if the driver stores the pointer to its interrupt object(s) in the controller extension, it must call IoDisconnectInterrupt before IoDeleteController.

See also

IoCreateController

IoDisconnectInterrupt