mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
12 lines
238 B
C
12 lines
238 B
C
#pragma once
|
|
|
|
#include "Core/HLE/HLE.h"
|
|
|
|
#if PPSSPP_PLATFORM(WINDOWS)
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
#else
|
|
#include <netinet/in.h>
|
|
#endif
|
|
|
|
bool getDefaultOutboundSockaddr(sockaddr_in& destSockaddrIn, socklen_t& destSocklen);
|