Microsoft Windows CE 3.0  

MiniportEnableInterrupt

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

MiniportEnableInterruptis an optional function, supplied by some drivers of network adapters that support dynamic enabling and disabling of interrupts but do not share an IRQ.

VOID
MiniportEnableInterrupt(
IN NDIS_HANDLE
MiniportAdapterContext
);

Parameters

MiniportAdapterContext
Specifies the handle to a miniport-allocated context area in which the driver maintains per-network adapter state, set up by MiniportInitialize.

Comments

MiniportEnableInterrupttypically enables interrupts by writing a mask to the network adapter.

A network adapter driver that exports a MiniportDisableInterruptfunction need not have a reciprocal MiniportEnableInterruptfunction. Such a driver's MiniportHandleInterruptfunction is responsible for re-enabling interrupts on the network adapter.

If its network adapter does not support dynamic enabling and disabling of interrupts, the network adapter driver must register a MiniportISRfunction and set RequestIsrto TRUE when it calls NdisMRegisterMiniport. Such a driver's MiniportISRfunction must acknowledge each interrupt generated by the network adapter and save any necessary interrupt information for the driver's MiniportHandleInterruptfunction.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 2.0 and later Ndis.h   Ndislib.lib
Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

MiniportDisableInterrupt, MiniportHandleInterrupt, MiniportInitialize, MiniportISR, NdisMRegisterInterrupt, NdisMRegisterMiniport