inetcomm: Make a function static.

This commit is contained in:
Alexandre Julliard 2008-12-04 12:47:32 +01:00
parent fd2cb87c87
commit 7d2993d24c

View File

@ -460,7 +460,7 @@ static void POP3Transport_CallbackRecvRSETResp(IInternetTransport *iface, char *
InternetTransport_ReadLine(&This->InetTransport, POP3Transport_CallbackProcessRSETResp); InternetTransport_ReadLine(&This->InetTransport, POP3Transport_CallbackProcessRSETResp);
} }
void POP3Transport_CallbackProcessRETRResp(IInternetTransport *iface, char *pBuffer, int cbBuffer) static void POP3Transport_CallbackProcessRETRResp(IInternetTransport *iface, char *pBuffer, int cbBuffer)
{ {
POP3Transport *This = (POP3Transport *)iface; POP3Transport *This = (POP3Transport *)iface;
POP3RESPONSE response; POP3RESPONSE response;