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

wpcap: Implement pcap_breakloop.

parent d45f9144
...@@ -26,6 +26,12 @@ ...@@ -26,6 +26,12 @@
WINE_DEFAULT_DEBUG_CHANNEL(wpcap); WINE_DEFAULT_DEBUG_CHANNEL(wpcap);
WINE_DECLARE_DEBUG_CHANNEL(winediag); WINE_DECLARE_DEBUG_CHANNEL(winediag);
void CDECL wine_pcap_breakloop(pcap_t *p)
{
TRACE("(%p)\n", p);
return pcap_breakloop(p);
}
int CDECL wine_pcap_compile(pcap_t *p, struct bpf_program *program, const char *buf, int optimize, int CDECL wine_pcap_compile(pcap_t *p, struct bpf_program *program, const char *buf, int optimize,
unsigned int mask) unsigned int mask)
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
@ stub eproto_db @ stub eproto_db
@ stub getservent @ stub getservent
@ stub install_bpf_program @ stub install_bpf_program
@ stub pcap_breakloop @ cdecl pcap_breakloop(ptr) wine_pcap_breakloop
@ stub pcap_close @ stub pcap_close
@ cdecl pcap_compile(ptr ptr str long long) wine_pcap_compile @ cdecl pcap_compile(ptr ptr str long long) wine_pcap_compile
@ stub pcap_compile_nopcap @ stub pcap_compile_nopcap
......
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