Changeset 68026 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 18, 2017 2:15:32 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117046
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HostNetworkInterfaceImpl.h
r65120 r68026 70 70 HRESULT getInterfaceType(HostNetworkInterfaceType_T *aType); 71 71 HRESULT getNetworkName(com::Utf8Str &aNetworkName); 72 HRESULT getWireless(BOOL *aWireless); 72 73 73 74 // Wrapped IHostNetworkInterface methods … … 93 94 Data() : IPAddress(0), networkMask(0), dhcpEnabled(FALSE), 94 95 mediumType(HostNetworkInterfaceMediumType_Unknown), 95 status(HostNetworkInterfaceStatus_Down) {}96 status(HostNetworkInterfaceStatus_Down), wireless(FALSE){} 96 97 97 98 ULONG IPAddress; … … 108 109 HostNetworkInterfaceStatus_T status; 109 110 ULONG speedMbits; 111 BOOL wireless; 110 112 } m; 111 113 -
trunk/src/VBox/Main/include/netif.h
r67566 r68026 68 68 RTNETADDRIPV6 IPv6Address; 69 69 RTNETADDRIPV6 IPv6NetMask; 70 BOOL bDhcpEnabled; 71 BOOL bIsDefault; 70 BOOL fDhcpEnabled; 71 BOOL fIsDefault; 72 BOOL fWireless; 72 73 RTMAC MACAddress; 73 74 NETIFTYPE enmMediumType;
Note:
See TracChangeset
for help on using the changeset viewer.