Changeset 26957 in vbox for trunk/src/VBox
- Timestamp:
- Mar 2, 2010 4:43:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r26951 r26957 50 50 #include <VBox/vmapi.h> 51 51 #include <VBox/err.h> 52 #include <VBox/param.h> 53 #include <VBox/pdmapi.h> /* For PDMR3DriverAttach/PDMR3DriverDetach */ 52 54 #include <VBox/version.h> 53 55 #include <VBox/HostServices/VBoxClipboardSvc.h> 54 56 #ifdef VBOX_WITH_CROGL 55 # include <VBox/HostServices/VBoxCrOpenGLSvc.h>57 # include <VBox/HostServices/VBoxCrOpenGLSvc.h> 56 58 #endif 57 59 #ifdef VBOX_WITH_GUEST_PROPS … … 69 71 #include <VBox/com/array.h> 70 72 71 #if defined(RT_OS_SOLARIS) && defined(VBOX_WITH_NETFLT) 72 # include <zone.h> 73 #endif 74 75 #if defined(RT_OS_LINUX) && defined(VBOX_WITH_NETFLT) 76 # include <unistd.h> 77 # include <sys/ioctl.h> 78 # include <sys/socket.h> 79 # include <linux/types.h> 80 # include <linux/if.h> 81 # include <linux/wireless.h> 82 #endif 83 84 #if defined(RT_OS_FREEBSD) && defined(VBOX_WITH_NETFLT) 85 # include <unistd.h> 86 # include <sys/types.h> 87 # include <sys/ioctl.h> 88 # include <sys/socket.h> 89 # include <net/if.h> 90 # include <net80211/ieee80211_ioctl.h> 91 #endif 92 93 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT) 94 # include <VBox/WinNetConfig.h> 95 # include <Ntddndis.h> 96 # include <devguid.h> 97 #endif 98 99 #if !defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT) 100 # include <HostNetworkInterfaceImpl.h> 101 # include <netif.h> 102 # include <stdlib.h> 103 #endif 73 #ifdef VBOX_WITH_NETFLT 74 # ifdef RT_OS_SOLARIS 75 # include <zone.h> 76 # endif 77 # ifdef RT_OS_LINUX 78 # include <unistd.h> 79 # include <sys/ioctl.h> 80 # include <sys/socket.h> 81 # include <linux/types.h> 82 # include <linux/if.h> 83 # include <linux/wireless.h> 84 # endif 85 # ifdef RT_OS_FREEBSD 86 # include <unistd.h> 87 # include <sys/types.h> 88 # include <sys/ioctl.h> 89 # include <sys/socket.h> 90 # include <net/if.h> 91 # include <net80211/ieee80211_ioctl.h> 92 # endif 93 # ifdef RT_OS_WINDOWS 94 # include <VBox/WinNetConfig.h> 95 # include <Ntddndis.h> 96 # include <devguid.h> 97 # else 98 # include <HostNetworkInterfaceImpl.h> 99 # include <netif.h> 100 # include <stdlib.h> 101 # endif 102 #endif /* VBOX_WITH_NETFLT */ 104 103 105 104 #include "DHCPServerRunner.h" 106 107 #include <VBox/param.h>108 #include <VBox/pdmapi.h> /* For PDMR3DriverAttach/PDMR3DriverDetach */109 105 110 106 #if defined(RT_OS_DARWIN) && !defined(VBOX_OSE)
Note:
See TracChangeset
for help on using the changeset viewer.