mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(Win32) Start trying to implement Win32 backend for net_ifinfo.c
This commit is contained in:
parent
dfa315f0d5
commit
966f267285
@ -40,7 +40,6 @@
|
||||
|
||||
void net_ifinfo_free(net_ifinfo_t *list)
|
||||
{
|
||||
#ifndef _WIN32
|
||||
unsigned k;
|
||||
|
||||
if (!list)
|
||||
@ -64,12 +63,13 @@ void net_ifinfo_free(net_ifinfo_t *list)
|
||||
}
|
||||
free(list->entries);
|
||||
free(list);
|
||||
#endif
|
||||
}
|
||||
|
||||
bool net_ifinfo_new(net_ifinfo_t *list)
|
||||
{
|
||||
#ifndef _WIN32
|
||||
#ifdef _WIN32
|
||||
return false;
|
||||
#else
|
||||
unsigned k = 0;
|
||||
struct ifaddrs *ifa = NULL;
|
||||
struct ifaddrs *ifaddr = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user