Files
ppsspp/net/resolve.h
T

14 lines
271 B
C++

#ifndef _NET_RESOLVE_H
#define _NET_RESOLVE_H
namespace net {
// Strictly only required on Win32, but all platforms should call it.
void Init();
void Shutdown();
// use free() to free the returned string.
char *DNSResolve(const char *host);
} // namespace net
#endif