Changeset 15708 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 19, 2008 6:28:27 PM (16 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r15051 r15708 71 71 return setError (E_ACCESSDENIED, tr ("The console is not powered up")); \ 72 72 } while (0) 73 74 /** @def VBOX_WITH_UNIXY_TAP_NETWORKING75 * Unixy style TAP networking. This is defined in the Makefile since it's also76 * used by NetworkAdapterImpl.h/cpp.77 */78 #ifdef __DOXYGEN__79 # define VBOX_WITH_UNIXY_TAP_NETWORKING80 #endif81 73 82 74 // Console … … 553 545 PPDMLED mapSharedFolderLed; 554 546 PPDMLED mapUSBLed[2]; 555 #ifdef VBOX_WITH_UNIXY_TAP_NETWORKING556 Utf8Str maTAPDeviceName[8];557 RTFILE maTapFD[8];558 #endif559 547 560 548 bool mVMStateChangeCallbackDisabled; -
trunk/src/VBox/Main/include/NetworkAdapterImpl.h
r15537 r15708 45 45 , mAttachmentType (NetworkAttachmentType_Null) 46 46 , mCableConnected (TRUE), mLineSpeed (0), mTraceEnabled (FALSE) 47 #ifndef VBOX_WITH_UNIXY_TAP_NETWORKING 48 , mHostInterface ("") // cannot be null 49 #else 50 , mTAPFD (NIL_RTFILE) 51 #endif 47 , mHostInterface ("") /* cannot be null */ 52 48 {} 53 49 … … 63 59 mTraceEnabled == that.mTraceEnabled && 64 60 mHostInterface == that.mHostInterface && 65 #ifdef VBOX_WITH_UNIXY_TAP_NETWORKING66 mTAPSetupApplication == that.mTAPSetupApplication &&67 mTAPTerminateApplication == that.mTAPTerminateApplication &&68 mTAPFD == that.mTAPFD &&69 #endif70 61 mInternalNetwork == that.mInternalNetwork && 71 62 mNATNetwork == that.mNATNetwork); … … 82 73 Bstr mTraceFile; 83 74 Bstr mHostInterface; 84 #ifdef VBOX_WITH_UNIXY_TAP_NETWORKING85 Bstr mTAPSetupApplication;86 Bstr mTAPTerminateApplication;87 RTFILE mTAPFD;88 #endif89 75 Bstr mInternalNetwork; 90 76 Bstr mNATNetwork; … … 126 112 STDMETHOD(COMGETTER(HostInterface)) (BSTR *aHostInterface); 127 113 STDMETHOD(COMSETTER(HostInterface)) (IN_BSTR aHostInterface); 128 #ifdef VBOX_WITH_UNIXY_TAP_NETWORKING129 STDMETHOD(COMGETTER(TAPFileDescriptor)) (LONG *aTAPFileDescriptor);130 STDMETHOD(COMSETTER(TAPFileDescriptor)) (LONG aTAPFileDescriptor);131 STDMETHOD(COMGETTER(TAPSetupApplication)) (BSTR *aTAPSetupApplication);132 STDMETHOD(COMSETTER(TAPSetupApplication)) (IN_BSTR aTAPSetupApplication);133 STDMETHOD(COMGETTER(TAPTerminateApplication)) (BSTR *aTAPTerminateApplication);134 STDMETHOD(COMSETTER(TAPTerminateApplication)) (IN_BSTR aTAPTerminateApplication);135 #endif136 114 STDMETHOD(COMGETTER(InternalNetwork)) (BSTR *aInternalNetwork); 137 115 STDMETHOD(COMSETTER(InternalNetwork)) (IN_BSTR aInternalNetwork); -
trunk/src/VBox/Main/include/VirtualBoxXMLUtil.h
r14949 r15708 29 29 30 30 /** VirtualBox XML settings version number substring ("x.y") */ 31 #define VBOX_XML_VERSION "1. 5"31 #define VBOX_XML_VERSION "1.6" 32 32 33 33 /** VirtualBox XML settings version platform substring */
Note:
See TracChangeset
for help on using the changeset viewer.