pEapOutput Prefast specifier for set_response_attributes() methods changed
This commit is contained in:
parent
45ce38916b
commit
2c91b6ca8c
@ -175,7 +175,7 @@ namespace eap
|
|||||||
///
|
///
|
||||||
virtual void set_response_attributes(
|
virtual void set_response_attributes(
|
||||||
_In_ const EapAttributes *pAttribs,
|
_In_ const EapAttributes *pAttribs,
|
||||||
_Inout_ EapPeerMethodOutput *pEapOutput);
|
_Out_ EapPeerMethodOutput *pEapOutput);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
@ -781,7 +781,7 @@ namespace eap
|
|||||||
virtual void set_response_attributes(
|
virtual void set_response_attributes(
|
||||||
_In_ EAP_SESSION_HANDLE hSession,
|
_In_ EAP_SESSION_HANDLE hSession,
|
||||||
_In_ const EapAttributes *pAttribs,
|
_In_ const EapAttributes *pAttribs,
|
||||||
_Inout_ EapPeerMethodOutput *pEapOutput) = 0;
|
_Out_ EapPeerMethodOutput *pEapOutput) = 0;
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
};
|
};
|
||||||
|
@ -147,7 +147,7 @@ void eap::method::get_response_attributes(_Inout_ EapAttributes *pAttribs)
|
|||||||
|
|
||||||
void eap::method::set_response_attributes(
|
void eap::method::set_response_attributes(
|
||||||
_In_ const EapAttributes *pAttribs,
|
_In_ const EapAttributes *pAttribs,
|
||||||
_Inout_ EapPeerMethodOutput *pEapOutput)
|
_Out_ EapPeerMethodOutput *pEapOutput)
|
||||||
{
|
{
|
||||||
UNREFERENCED_PARAMETER(pAttribs);
|
UNREFERENCED_PARAMETER(pAttribs);
|
||||||
assert(pEapOutput);
|
assert(pEapOutput);
|
||||||
|
@ -164,7 +164,7 @@ namespace eap
|
|||||||
///
|
///
|
||||||
virtual void set_response_attributes(
|
virtual void set_response_attributes(
|
||||||
_In_ const EapAttributes *pAttribs,
|
_In_ const EapAttributes *pAttribs,
|
||||||
_Inout_ EapPeerMethodOutput *pEapOutput);
|
_Out_ EapPeerMethodOutput *pEapOutput);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ namespace eap
|
|||||||
virtual void set_response_attributes(
|
virtual void set_response_attributes(
|
||||||
_In_ EAP_SESSION_HANDLE hSession,
|
_In_ EAP_SESSION_HANDLE hSession,
|
||||||
_In_ const EapAttributes *pAttribs,
|
_In_ const EapAttributes *pAttribs,
|
||||||
_Inout_ EapPeerMethodOutput *pEapOutput);
|
_Out_ EapPeerMethodOutput *pEapOutput);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
@ -178,7 +178,7 @@ void eap::method_ttls::get_response_attributes(_Inout_ EapAttributes *pAttribs)
|
|||||||
|
|
||||||
void eap::method_ttls::set_response_attributes(
|
void eap::method_ttls::set_response_attributes(
|
||||||
_In_ const EapAttributes *pAttribs,
|
_In_ const EapAttributes *pAttribs,
|
||||||
_Inout_ EapPeerMethodOutput *pEapOutput)
|
_Out_ EapPeerMethodOutput *pEapOutput)
|
||||||
{
|
{
|
||||||
UNREFERENCED_PARAMETER(pAttribs);
|
UNREFERENCED_PARAMETER(pAttribs);
|
||||||
UNREFERENCED_PARAMETER(pEapOutput);
|
UNREFERENCED_PARAMETER(pEapOutput);
|
||||||
|
@ -331,9 +331,9 @@ void eap::peer_ttls::get_response_attributes(
|
|||||||
|
|
||||||
|
|
||||||
void eap::peer_ttls::set_response_attributes(
|
void eap::peer_ttls::set_response_attributes(
|
||||||
_In_ EAP_SESSION_HANDLE hSession,
|
_In_ EAP_SESSION_HANDLE hSession,
|
||||||
_In_ const EapAttributes *pAttribs,
|
_In_ const EapAttributes *pAttribs,
|
||||||
_Inout_ EapPeerMethodOutput *pEapOutput)
|
_Out_ EapPeerMethodOutput *pEapOutput)
|
||||||
{
|
{
|
||||||
static_cast<session*>(hSession)->m_method->set_response_attributes(pAttribs, pEapOutput);
|
static_cast<session*>(hSession)->m_method->set_response_attributes(pAttribs, pEapOutput);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user