Commit e7bf85cc authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

wpcap: Add stub for pcap_setbuff.

parent 5d0e6785
......@@ -74,6 +74,12 @@ pcap_t* CDECL wine_pcap_open_live(const char *source, int snaplen, int promisc,
return pcap_open_live(source, snaplen, promisc, to_ms, errbuf);
}
int CDECL wine_pcap_setbuff(pcap_t * p, int dim)
{
FIXME("(%p %i) stub\n", p, dim);
return 0;
}
int CDECL wine_pcap_stats(pcap_t *p, struct pcap_stat *ps)
{
TRACE("(%p %p)\n", p, ps);
......
......@@ -64,7 +64,7 @@
@ stub pcap_sendqueue_queue
@ stub pcap_sendqueue_transmit
@ stub pcap_set_datalink
@ stub pcap_setbuff
@ cdecl pcap_setbuff(ptr long) wine_pcap_setbuff
@ stub pcap_setfilter
@ stub pcap_setmintocopy
@ stub pcap_setmode
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment