소스 검색

Fixed struct timeval undeclared on Windows

Paul-Louis Ageneau 4 년 전
부모
커밋
c929be592b
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      examples/streamer/helpers.cpp

+ 2 - 1
examples/streamer/helpers.cpp

@@ -21,7 +21,8 @@
 
 #ifdef _WIN32
 // taken from https://stackoverflow.com/questions/10905892/equivalent-of-gettimeday-for-windows
-#include <Windows.h>
+#include <windows.h>
+#include <winsock2.h> // for struct timeval
 
 struct timezone {
     int tz_minuteswest;