WlxNetworkProviderLoad function
[The WlxNetworkProviderLoad function is no longer available for use as of Windows Server 2008 and Windows Vista.]
The WlxNetworkProviderLoad function must be implemented by a replacement GINA DLL. Winlogon calls this function to collect valid authentication and identification information.
Syntax
BOOL WlxNetworkProviderLoad( _In_ PVOID pWlxContext, _Out_ PWLX_MPR_NOTIFY_INFO pNprNotifyInfo );
Parameters
- pWlxContext [in]
-
Pointer to the GINA context associated with this window station. The GINA returns this context value when Winlogon calls WlxInitialize for this station.
- pNprNotifyInfo [out]
-
Points to an WLX_MPR_NOTIFY_INFO structure that contains domain, user name, and password information for the user. Winlogon will use this information to provide identification and authentication information to network providers.
The GINA is not required to return password information. Any NULL fields within the structure will be ignored by Winlogon. Use LocalAlloc to allocate each string; Winlogon will free them when they are no longer needed.
Return value
| Return code | Description |
|---|---|
|
Return TRUE if the user was authenticated. |
|
Return FALSE if the user was not authenticated. |
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
End of client support |
Windows XP |
|
End of server support |
Windows Server 2003 |
|
Header |
|
See also