wpcap: Implement pcap_stats.

This commit is contained in:
André Hentschel 2014-08-12 00:30:47 +02:00 committed by Alexandre Julliard
parent 8738eb31de
commit 5d0e67855d
2 changed files with 7 additions and 1 deletions

View File

@ -73,3 +73,9 @@ pcap_t* CDECL wine_pcap_open_live(const char *source, int snaplen, int promisc,
TRACE("(%p %i %i %i %p)\n", source, snaplen, promisc, to_ms, errbuf);
return pcap_open_live(source, snaplen, promisc, to_ms, errbuf);
}
int CDECL wine_pcap_stats(pcap_t *p, struct pcap_stat *ps)
{
TRACE("(%p %p)\n", p, ps);
return pcap_stats(p, ps);
}

View File

@ -72,7 +72,7 @@
@ stub pcap_setsampling
@ stub pcap_setuserbuffer
@ stub pcap_snapshot
@ stub pcap_stats
@ cdecl pcap_stats(ptr ptr) wine_pcap_stats
@ stub pcap_stats_ex
@ stub pcap_strerror
@ stub wsockinit