RasSecurityDialogGetInfo  3LUF_HX 

[New - Windows NT]

The RasSecurityDialogGetInfo function is called by a RAS security DLL to get information about a port from the RAS server.

To call this function, you must first call the LoadLibrary1VGHBF8 function to load RASMAN.DLL. Then call the GetProcAddressC_PCN4 function to get the DLL s RasSecurityDialogGetInfo entry point.

DWORD RasSecurityDialogGetInfo(

    HPORT hPort,

// RAS handle to port

    RAS_SECURITY_INFO *pBuffer

// pointer to structure that gets port information

   );

 

 

Parameters

hPort

Specifies the port handle that the RAS server passed to the security DLL in the RasSecurityDialogBeginESJKC call for this authentication transaction.

pBuffer

Pointer to a RAS_SECURITY_INFO19VJ0JG structure that receives information about the specified RAS port.

 

Return Values

If the function succeeds, the return value is NO_ERROR.

If the function fails, the return value is one of the error codes defined in RASERROR.H or WINERROR.H. GetLastError11C2VS7 does not provide extended error information.

Remarks

The RasSecurityDialogGetInfo function retrieves information about the port associated with a RAS security DLL authentication transaction.

The LastError member of the RAS_SECURITY_INFO structure indicates the state of the last RasSecurityDialogReceive call for the port. If the receive operation has been completed successfully, LastError is SUCCESS and the BytesReceived member indicates the number of bytes received. Otherwise, LastError is PENDING if the receive operation is still in progress, or a nonzero error code if the receive operation failed.

See Also

GetProcAddress, LoadLibrary, RAS_SECURITY_INFO, RasSecurityDialogReceive