Changeset 101482 in vbox
- Timestamp:
- Oct 17, 2023 3:05:54 PM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 159554
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImplConfigX86.cpp
r101477 r101482 38 38 #include "LoggingNew.h" 39 39 40 // VBoxNetCfg-win.h needs winsock2.h and thus MUST be included before any other41 // header file includes Windows.h.42 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT)43 # include <VBox/VBoxNetCfg-win.h>44 #endif45 46 40 #include "ConsoleImpl.h" 47 41 #include "DisplayImpl.h" … … 88 82 #include <VBox/vmm/gcm.h> 89 83 #include <VBox/version.h> 90 #ifdef VBOX_WITH_GUEST_PROPS91 # include <VBox/HostServices/GuestPropertySvc.h>92 # include <VBox/com/defs.h>93 # include <VBox/com/array.h>94 # include <vector>95 #endif /* VBOX_WITH_GUEST_PROPS */96 #include <VBox/intnet.h>97 84 98 85 #include <VBox/com/com.h> … … 100 87 #include <VBox/com/array.h> 101 88 102 #ifdef VBOX_WITH_NETFLT103 # if defined(RT_OS_SOLARIS)104 # include <zone.h>105 # elif defined(RT_OS_LINUX)106 # include <unistd.h>107 # include <sys/ioctl.h>108 # include <sys/socket.h>109 # include <linux/types.h>110 # include <linux/if.h>111 # elif defined(RT_OS_FREEBSD)112 # include <unistd.h>113 # include <sys/types.h>114 # include <sys/ioctl.h>115 # include <sys/socket.h>116 # include <net/if.h>117 # include <net80211/ieee80211_ioctl.h>118 # endif119 # if defined(RT_OS_WINDOWS)120 # include <iprt/win/ntddndis.h>121 # include <devguid.h>122 # else123 # include <HostNetworkInterfaceImpl.h>124 # include <netif.h>125 # include <stdlib.h>126 # endif127 #endif /* VBOX_WITH_NETFLT */128 129 #ifdef VBOX_WITH_AUDIO_VRDE130 # include "DrvAudioVRDE.h"131 #endif132 #ifdef VBOX_WITH_AUDIO_RECORDING133 # include "DrvAudioRec.h"134 #endif135 89 #include "NetworkServiceRunner.h" 136 90 #include "BusAssignmentManager.h"
Note:
See TracChangeset
for help on using the changeset viewer.