summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/soc_u.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/hle/service/soc_u.cpp b/src/core/hle/service/soc_u.cpp
index f502c6afe..bb8ee86be 100644
--- a/src/core/hle/service/soc_u.cpp
+++ b/src/core/hle/service/soc_u.cpp
@@ -7,6 +7,19 @@
7#if EMU_PLATFORM == PLATFORM_WINDOWS 7#if EMU_PLATFORM == PLATFORM_WINDOWS
8#include <winsock2.h> 8#include <winsock2.h>
9#include <ws2tcpip.h> 9#include <ws2tcpip.h>
10
11// MinGW does not define several errno constants
12#ifndef _MSC_VER
13#define EBADMSG 104
14#define ENODATA 120
15#define ENOMSG 122
16#define ENOSR 124
17#define ENOSTR 125
18#define ETIME 137
19#define EIDRM 2001
20#define ENOLINK 2002
21#endif // _MSC_VER
22
10#else 23#else
11#include <sys/socket.h> 24#include <sys/socket.h>
12#include <netinet/in.h> 25#include <netinet/in.h>