WifiAdapterInitialize - NtDoc

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

NTSTATUS WifiAdapterInitialize(
  NETADAPTER Adapter
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wificx-wifiadapterinitialize)

Description

The WifiAdapterInitialize function initializes a newly created NETADAPTER object for WiFiCx.

Parameters

Adapter

[_In_] A handle to a NetAdapterCx NETADAPTER object obtained in a previous call to NetAdapterCreate.

Return value

Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this function may return an appropriate NTSTATUS error code.

This function might return failure in low resource situations.

Remarks

The client driver must call this function from within EvtWifiDeviceCreateAdapter.

For more information, see Writing a WiFiCx client driver.

See also

NetAdapterCreate

EvtWifiDeviceCreateAdapter

Writing a WiFiCx client driver