Commit aaf44538 authored by Steve Lhomme's avatar Steve Lhomme

* ipv4.c: make MSVC happy

parent 7019a8c5
...@@ -344,8 +344,11 @@ static int OpenUDP( vlc_object_t * p_this ) ...@@ -344,8 +344,11 @@ static int OpenUDP( vlc_object_t * p_this )
#if defined (WIN32) || defined (UNDER_CE) #if defined (WIN32) || defined (UNDER_CE)
else else
{ {
DWORD WINAPI (*OurGetBestInterface)(IPAddr,PDWORD); typedef DWORD (CALLBACK * GETBESTINTERFACE) ( IPAddr, PDWORD );
DWORD WINAPI (*OurGetIpAddrTable)(PMIB_IPADDRTABLE,PULONG,BOOL); typedef DWORD (CALLBACK * GETIPADDRTABLE) ( PMIB_IPADDRTABLE, PULONG, BOOL );
GETBESTINTERFACE OurGetBestInterface;
GETIPADDRTABLE OurGetIpAddrTable;
HINSTANCE hiphlpapi = LoadLibrary(_T("Iphlpapi.dll")); HINSTANCE hiphlpapi = LoadLibrary(_T("Iphlpapi.dll"));
DWORD i_index; DWORD i_index;
......
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