Dear Developers,
Greetings!!!
As, I am developing miniport driver for ndis6.0 framework on WinCE 7 platform. I have completed the DriverEntry part and successfully register my miniport driver with NDIS framework.
I am working in MPInitializationEx part and there I have done the following things in the flow mentioned : -
- Configured NDIS_CONFIGURATION_OBJECT
- Able to access the parameters of registry using NdisOpenConfigurationEx
- Able to register miniport attributes in NDIS_MINIPORT_ADAPTER_ATTRIBUTES
- Able to set some general miniport attributes in NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES
As, I am taking the reference of Pro_Windows_Embedded_Compact_7.pdf reference.
There, I can see some local functions for MPInitializationEx as: -
MpAllocAdapterBlock
NICReadRegParameters
MpFindAdapter
NICInitSend
NICInitRecv
NICSelfTest
NICInitializeAdapter
What are all these functions…
As, the information given in
https://msdn.microsoft.com/en-in/library/gg157001(v=winembedded.70).aspx
for MPInitializeEx is not matching according to the above local function…
One thing I know that in this MPInitializationEx, we have to init the Adapter and load the firmware.
But I have no information to proceed forward. Where can I get the exact info so that I can close my MPInitializeEx