Changeset 14100 in vbox
- Timestamp:
- Nov 11, 2008 5:11:06 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFlt.c
r14097 r14100 1119 1119 } 1120 1120 1121 /** 1122 * tries to deinitialize Idc 1123 * we separate the globals settings "base" which is actually 1124 * "general" globals settings except for Idc, and idc. 1125 * This is needed for windows filter driver, which gets loaded prior to VBoxDrv, 1126 * thus it's not possible to make idc initialization from the driver startup routine for it, 1127 * though the "base is still needed for the driver to functions". 1128 * @param pGlobals 1129 * @return VINF_SUCCESS on succes, VERR_WRONG_ORDER if we're busy. 1130 */ 1121 1131 DECLHIDDEN(int) vboxNetFltTryDeleteIdc(PVBOXNETFLTGLOBALS pGlobals) 1122 1132 { … … 1149 1159 } 1150 1160 1161 /** 1162 * performs "base" globals deinitialization 1163 * we separate the globals settings "base" which is actually 1164 * "general" globals settings except for Idc, and idc. 1165 * This is needed for windows filter driver, which gets loaded prior to VBoxDrv, 1166 * thus it's not possible to make idc initialization from the driver startup routine for it, 1167 * though the "base is still needed for the driver to functions". 1168 * @param pGlobals 1169 * @return none 1170 */ 1151 1171 DECLHIDDEN(void) vboxNetFltDeleteGlobalsBase(PVBOXNETFLTGLOBALS pGlobals) 1152 1172 {
Note:
See TracChangeset
for help on using the changeset viewer.