Microsoft Windows CE 3.0  

NDIS Driver Registration and Initialization

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.

All NDIS miniport and intermediate drivers must provide a DriverEntryfunction. When a miniport driver is loaded, NDIS calls DriverEntry, which creates an association between the miniport driver and the NDIS library, and registers the miniport with NDIS.

The DriverEntryfunction requires the following syntax:

NTSTATUS DriverEntry(
IN PDRIVER_OBJECT
pDriverObject_
,
IN PUNICODE_STRING
pRegistryPath_
);

The following parameters are passed into the DriverEntryfunction: