Changeset 17929 in vbox for trunk/src/VBox/Main/generic
- Timestamp:
- Mar 16, 2009 1:09:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/generic/NetIf-generic.cpp
r17835 r17929 78 78 } 79 79 80 int NetIfEnableStaticIpConfig(VirtualBox * vBox, HostNetworkInterface * pIf, ULONG ip, ULONG mask)80 int NetIfEnableStaticIpConfig(VirtualBox * /* vBox */, HostNetworkInterface * pIf, ULONG ip, ULONG mask) 81 81 { 82 82 char szAddress[16]; /* 4*3 + 3*1 + 1 */ … … 91 91 } 92 92 93 int NetIfEnableStaticIpConfigV6(VirtualBox * vBox, HostNetworkInterface * pIf, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength)93 int NetIfEnableStaticIpConfigV6(VirtualBox * /* vBox */, HostNetworkInterface * pIf, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength) 94 94 { 95 95 char szAddress[5*8 + 1 + 5 + 1]; … … 99 99 } 100 100 101 int NetIfEnableDynamicIpConfig(VirtualBox * vBox, HostNetworkInterface * pIf)101 int NetIfEnableDynamicIpConfig(VirtualBox * /* vBox */, HostNetworkInterface * /* pIf */) 102 102 { 103 103 return VERR_NOT_IMPLEMENTED; 104 104 } 105 105 106 int NetIfCreateHostOnlyNetworkInterface (VirtualBox * pVbox, IHostNetworkInterface **aHostNetworkInterface, IProgress **aProgress)106 int NetIfCreateHostOnlyNetworkInterface (VirtualBox * /* pVbox */, IHostNetworkInterface ** /* aHostNetworkInterface */, IProgress ** /* aProgress */) 107 107 { 108 108 return VERR_NOT_IMPLEMENTED; 109 109 } 110 110 111 int NetIfRemoveHostOnlyNetworkInterface (VirtualBox * pVbox, IN_GUID aId, IHostNetworkInterface **aHostNetworkInterface, IProgress **aProgress)111 int NetIfRemoveHostOnlyNetworkInterface (VirtualBox * /* pVbox */, IN_GUID /* aId */, IHostNetworkInterface ** /* aHostNetworkInterface */, IProgress ** /* aProgress */) 112 112 { 113 113 return VERR_NOT_IMPLEMENTED; 114 114 } 115 115 116 int NetIfGetConfig(HostNetworkInterface * pIf, NETIFINFO *)116 int NetIfGetConfig(HostNetworkInterface * /* pIf */, NETIFINFO *) 117 117 { 118 118 return VERR_NOT_IMPLEMENTED; 119 119 } 120 120 121 int NetIfDhcpRediscover(VirtualBox * pVbox, HostNetworkInterface * pIf)121 int NetIfDhcpRediscover(VirtualBox * /* pVbox */, HostNetworkInterface * /* pIf */) 122 122 { 123 123 return VERR_NOT_IMPLEMENTED;
Note:
See TracChangeset
for help on using the changeset viewer.