Changeset 49673 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 27, 2013 3:11:49 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90932
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DHCPServerImpl.h
r49644 r49673 129 129 HRESULT stop(); 130 130 131 132 struct Data 133 { 134 Data() : enabled(FALSE) {} 135 136 Bstr IPAddress; 137 Bstr lowerIP; 138 Bstr upperIP; 139 140 BOOL enabled; 141 DHCPServerRunner dhcp; 142 143 DhcpOptionMap GlobalDhcpOptions; 144 VmSlot2OptionsMap VmSlot2Options; 145 }; 146 147 Data m; 131 struct Data; 132 Data *m; 148 133 /** weak VirtualBox parent */ 149 134 VirtualBox * const mVirtualBox;
Note:
See TracChangeset
for help on using the changeset viewer.