Changeset 65428 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jan 24, 2017 3:32:55 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r63563 r65428 1112 1112 * @returns VBox status code. 1113 1113 * 1114 * @param p szIfNameInterface name.1114 * @param pcszIfName Interface name. 1115 1115 * @param penmState Where to store the retrieved state. 1116 1116 */ 1117 int NetIfGetState(const char *p szIfName, NETIFSTATUS *penmState)1118 { 1119 RT_NOREF(p szIfName, penmState);1117 int NetIfGetState(const char *pcszIfName, NETIFSTATUS *penmState) 1118 { 1119 RT_NOREF(pcszIfName, penmState); 1120 1120 return VERR_NOT_IMPLEMENTED; 1121 1121 } … … 1127 1127 * @returns VBox status code. 1128 1128 * 1129 * @param p szIfName Interface name.1129 * @param pcszIfName Interface name. 1130 1130 * @param puMbits Where to store the link speed. 1131 1131 */ 1132 int NetIfGetLinkSpeed(const char *p szIfName, uint32_t *puMbits)1133 { 1134 RT_NOREF(p szIfName, puMbits);1132 int NetIfGetLinkSpeed(const char *pcszIfName, uint32_t *puMbits) 1133 { 1134 RT_NOREF(pcszIfName, puMbits); 1135 1135 return VERR_NOT_IMPLEMENTED; 1136 1136 }
Note:
See TracChangeset
for help on using the changeset viewer.