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

wpcap: Implement pcap_major_version and pcap_minor_version.

parent 6a30cde7
......@@ -29,3 +29,15 @@ const char* CDECL wine_pcap_lib_version(void)
TRACE("%s\n", debugstr_a(ret));
return ret;
}
int CDECL wine_pcap_major_version(pcap_t *p)
{
TRACE("(%p)\n", p);
return pcap_major_version(p);
}
int CDECL wine_pcap_minor_version(pcap_t *p)
{
TRACE("(%p)\n", p);
return pcap_minor_version(p);
}
......@@ -40,8 +40,8 @@
@ stub pcap_lookupdev
@ stub pcap_lookupnet
@ stub pcap_loop
@ stub pcap_major_version
@ stub pcap_minor_version
@ cdecl pcap_major_version(ptr) wine_pcap_major_version
@ cdecl pcap_minor_version(ptr) wine_pcap_minor_version
@ stub pcap_next
@ stub pcap_next_etherent
@ stub pcap_next_ex
......
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