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

wpcap: Implement pcap_freecode.

parent c180d522
......@@ -55,6 +55,12 @@ void CDECL wine_pcap_freealldevs(pcap_if_t *alldevs)
pcap_freealldevs(alldevs);
}
void CDECL wine_pcap_freecode(struct bpf_program *fp)
{
TRACE("(%p)\n", fp);
return pcap_freecode(fp);
}
char* CDECL wine_pcap_geterr(pcap_t *p)
{
TRACE("(%p)\n", p);
......
......@@ -27,7 +27,7 @@
@ cdecl pcap_findalldevs(ptr ptr) wine_pcap_findalldevs
@ stub pcap_findalldevs_ex
@ cdecl pcap_freealldevs(ptr) wine_pcap_freealldevs
@ stub pcap_freecode
@ cdecl pcap_freecode(ptr) wine_pcap_freecode
@ stub pcap_get_airpcap_handle
@ cdecl pcap_geterr(ptr) wine_pcap_geterr
@ stub pcap_getevent
......
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