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

wpcap: Implement pcap_open_live.

parent efb1d1d8
......@@ -66,3 +66,10 @@ int CDECL wine_pcap_minor_version(pcap_t *p)
TRACE("(%p)\n", p);
return pcap_minor_version(p);
}
pcap_t* CDECL wine_pcap_open_live(const char *source, int snaplen, int promisc, int to_ms,
char *errbuf)
{
TRACE("(%p %i %i %i %p)\n", source, snaplen, promisc, to_ms, errbuf);
return pcap_open_live(source, snaplen, promisc, to_ms, errbuf);
}
......@@ -49,7 +49,7 @@
@ stub pcap_offline_read
@ stub pcap_open
@ stub pcap_open_dead
@ stub pcap_open_live
@ cdecl pcap_open_live(str long long long str) wine_pcap_open_live
@ stub pcap_open_offline
@ stub pcap_parsesrcstr
@ stub pcap_perror
......
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