netFreeLocalAddresses function net
Free the results from NET_GetLocalAddresses.
This will unref all addresses in the array and free the array itself.
Since addresses are reference counted, it is safe to keep any addresses you want from this array even after calling this function, as long as you called NET_RefAddress() on them first.
It is safe to pass a NULL in here, it will be ignored.
\param addresses A pointer returned by NET_GetLocalAddresses().
\threadsafety It is safe to call this function from any thread.
\since This function is available since SDL_net 3.0.0.
extern SDL_DECLSPEC void SDLCALL NET_FreeLocalAddresses(NET_Address **addresses)
Implementation
void netFreeLocalAddresses(Pointer<Pointer<NetAddress>> addresses) {
final netFreeLocalAddressesLookupFunction = _libNet
.lookupFunction<
Void Function(Pointer<Pointer<NetAddress>> addresses),
void Function(Pointer<Pointer<NetAddress>> addresses)
>('NET_FreeLocalAddresses');
return netFreeLocalAddressesLookupFunction(addresses);
}