mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 00:04:49 +02:00
14 lines
271 B
C++
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
|