Changeset 28714 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/win
- Timestamp:
- Apr 25, 2010 8:04:02 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60586
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/VBoxNetFlt-win.c
r28666 r28714 418 418 if(Status == STATUS_SUCCESS) 419 419 { 420 I NTNETSgInitTempSegs(pSG, 0 /*cbTotal*/, cSegs, 0 /*cSegsUsed*/);420 IntNetSgInitTempSegs(pSG, 0 /*cbTotal*/, cSegs, 0 /*cSegsUsed*/); 421 421 return pSG; 422 422 } … … 635 635 { 636 636 /* reinitialize */ 637 I NTNETSgInitTempSegs(pSG, 0 /*cbTotal*/, pSG->cSegsAlloc, 0 /*cSegsUsed*/);637 IntNetSgInitTempSegs(pSG, 0 /*cbTotal*/, pSG->cSegsAlloc, 0 /*cSegsUsed*/); 638 638 639 639 /* convert the ndis buffers to INTNETSG */ … … 1155 1155 if(Status == NDIS_STATUS_SUCCESS) 1156 1156 { 1157 I NTNETSgInitTemp(pSG, pSG + 1, cbPacket);1157 IntNetSgInitTemp(pSG, pSG + 1, cbPacket); 1158 1158 LogFlow(("pSG created (%p)\n", pSG)); 1159 1159 *ppSG = pSG; … … 1693 1693 if(fStatus == NDIS_STATUS_SUCCESS) 1694 1694 { 1695 I NTNETSgRead(pSG, pvMemBuf);1695 IntNetSgRead(pSG, pvMemBuf); 1696 1696 } 1697 1697 else
Note:
See TracChangeset
for help on using the changeset viewer.