wpcap: Implement pcap_stats.
This commit is contained in:
parent
8738eb31de
commit
5d0e67855d
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue