- Timestamp:
- Apr 14, 2016 5:29:15 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106619
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r60411 r60509 25 25 * Header Files * 26 26 *********************************************************************************************************************************/ 27 /* For some reason Windows burns in sdk\...\winsock.h if this isn't included first. */ 28 #include "VBox/com/ptr.h" 27 28 // VBoxNetCfg-win.h needs winsock2.h and thus MUST be included before any other 29 // header file includes Windows.h. 30 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT) 31 # include <VBox/VBoxNetCfg-win.h> 32 #endif 29 33 30 34 #include "ConsoleImpl.h" … … 108 112 # endif 109 113 # if defined(RT_OS_WINDOWS) 110 # include <VBox/VBoxNetCfg-win.h>111 114 # include <Ntddndis.h> 112 115 # include <devguid.h> -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r60107 r60509 5 5 6 6 /* 7 * Copyright (C) 2004-201 5Oracle Corporation7 * Copyright (C) 2004-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 19 19 #define __STDC_CONSTANT_MACROS 20 20 21 // VBoxNetCfg-win.h needs winsock2.h and thus MUST be included before any other 22 // header file includes Windows.h. 23 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT) 24 # include <VBox/VBoxNetCfg-win.h> 25 #endif 26 21 27 // for some reason Windows burns in sdk\...\winsock.h if this isn't included first 22 28 #include "VBox/com/ptr.h" … … 53 59 # include "PerformanceImpl.h" 54 60 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 55 56 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT)57 # include <VBox/VBoxNetCfg-win.h>58 #endif /* #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT) */59 61 60 62 #if defined(RT_OS_DARWIN) && ARCH_BITS == 32 … … 125 127 # include <shlobj.h> 126 128 # include <cfgmgr32.h> 127 129 # include <tchar.h> 128 130 #endif /* RT_OS_WINDOWS */ 129 131 -
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r59087 r60509 5 5 6 6 /* 7 * Copyright (C) 2008-201 2Oracle Corporation7 * Copyright (C) 2008-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 33 33 #include <ws2tcpip.h> 34 34 #include <windows.h> 35 #include <tchar.h> 35 36 36 37 #ifdef VBOX_WITH_NETFLT
Note:
See TracChangeset
for help on using the changeset viewer.