inetcomm: Add an implementation of ISMTPTransport2::CommandRSET.

This commit is contained in:
Rob Shearman 2008-10-31 13:51:47 +01:00 committed by Alexandre Julliard
parent a48b5387cf
commit 7b0bbc4dd6
1 changed files with 6 additions and 2 deletions

View File

@ -833,8 +833,12 @@ static HRESULT WINAPI SMTPTransport_CommandQUIT(ISMTPTransport2 *iface)
static HRESULT WINAPI SMTPTransport_CommandRSET(ISMTPTransport2 *iface)
{
FIXME("()\n");
return E_NOTIMPL;
SMTPTransport *This = (SMTPTransport *)iface;
TRACE("()\n");
return InternetTransport_DoCommand(&This->InetTransport, "RSET\n",
SMTPTransport_CallbackReadResponseDoNothing);
}
static HRESULT WINAPI SMTPTransport_CommandDATA(ISMTPTransport2 *iface)