Dot11ExtIhvInitVirtualStation routine
The operating system calls the Dot11ExtIhvInitVirtualStation function to initialize the IHV Extensions DLL for virtual station operations, and to initialize the API interface between the operating system and the DLL.
Syntax
DOT11EXTIHV_INIT_VIRTUAL_STATION Dot11ExtIhvInitVirtualStation;
DWORD APIENTRY Dot11ExtIhvInitVirtualStation(
_In_ PDOT11EXT_VIRTUAL_STATION_APIS pDot11ExtVSAPI,
_Reserved_ LPVOID pvReserved
)
{ ... }
Parameters
- pDot11ExtVSAPI [in]
-
A pointer to a DOT11EXT_VIRTUAL_STATION_APIS structure, which contains the addresses of the IHV Extensibility virtual station functions that are supported by the operating system. The operating system formats this parameter with the function addresses before making a call to the Dot11ExtIhvInitVirtualStation function.
- pvReserved
-
This parameter is reserved for use by the operating system and should be NULL.
Return value
If the call succeeds, the function returns ERROR_SUCCESS. Otherwise, it returns an error code defined in Winerror.h.
Remarks
It is optional for the IHV Extensions DLL to implement and export this function.
The operating system calls the Dot11ExtIhvInitVirtualStation function immediately after it calls the Dot11ExtIhvInitService function, but before it calls the Dot11ExtIhvInitAdapter function.
In response to a call to Dot11ExtIhvInitVirtualStation, the IHV Extensions DLL can initialize its internal data structures with the information provided from the Dot11ExtIhvInitService function call.
Note The IHV Extensions DLL is allowed to call the virtual station API functions that the pDot11ExtVSAPI parameter points to only after the Dot11ExtIhvInitVirtualStation function returns.
The operating system resolves the address of the Dot11ExtIhvInitVirtualStation function by calling the GetProcAddress function. As a result, the developer of the IHV Extensions DLL must follow these guidelines if this function is implemented.
-
The DLL must implement a function named Dot11ExtIhvInitVirtualStation, which has the format that is described in this topic.
-
The EXPORTS statement of the source module-definition (.def) file, which is used to build the IHV Extensions DLL, must contain a function name entry for the Dot11ExtIhvInitVirtualStation function.
For more information about GetProcAddress, see the Microsoft Windows SDK documentation.
Requirements
|
Version | Available in Windows 7 and later versions of the Windows operating systems. |
|---|---|
|
Header |
|
See also
Send comments about this topic to Microsoft
Build date: 5/7/2013
