We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbd5f36 commit 4d8da6aCopy full SHA for 4d8da6a
include/DMDUtil/DMD.h
@@ -15,7 +15,11 @@
15
#define DMDUTIL_MAX_PATH_SIZE 256
16
#define DMDUTIL_MAX_TRANSITIONAL_FRAME_DURATION 25
17
18
-#include <arpa/inet.h>
+#if defined(_WIN32) || defined(_WIN64)
19
+#include <winsock2.h> // Windows byte-order functions
20
+#else
21
+#include <arpa/inet.h> // Linux/macOS byte-order functions
22
+#endif
23
24
#include <atomic>
25
#include <condition_variable>
src/dmdServer.cpp
@@ -1,4 +1,8 @@
1
2
3
4
5
6
7
#include <algorithm>
8
#include <chrono>
0 commit comments