Changeset 63566 in vbox for trunk/src/VBox/Additions/WINNT/SharedFolders
- Timestamp:
- Aug 16, 2016 2:05:58 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/SharedFolders/driver
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/file.c
r63078 r63566 251 251 ByteCount, ByteOffset, FileSize)); 252 252 253 /* @todo check if this is necessary. */253 /** @todo check if this is necessary. */ 254 254 #ifdef FCB_STATE_READCACHING_ENABLED /* Correct spelling for Vista 6001 SDK. */ 255 255 if (!FlagOn(capFcb->FcbState, FCB_STATE_READCACHING_ENABLED)) … … 268 268 } 269 269 270 /* @todo read 0 bytes == always success? */270 /** @todo read 0 bytes == always success? */ 271 271 if ( !BufferMdl 272 272 || ByteCount == 0) … … 373 373 ByteCount, ByteOffset, FileSize)); 374 374 375 /* @todo allow to write 0 bytes. */375 /** @todo allow to write 0 bytes. */ 376 376 if ( !BufferMdl 377 377 || ByteCount == 0) … … 469 469 470 470 case LOWIO_OP_UNLOCK_MULTIPLE: 471 /* @todo Remove multiple locks listed in LowIoContext.ParamsFor.Locks.LockList. */471 /** @todo Remove multiple locks listed in LowIoContext.ParamsFor.Locks.LockList. */ 472 472 Log(("VBOXSF: MRxLocks: Unsupported LOWIO_OP_UNLOCK_MULTIPLE!\n", 473 473 LowIoContext->Operation)); -
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/info.c
r63077 r63566 350 350 pInfo->EndOfFile.QuadPart = pDirEntry->Info.cbObject; 351 351 pInfo->EaSize = 0; 352 pInfo->ShortNameLength = 0; /* @todo ? */352 pInfo->ShortNameLength = 0; /** @todo ? */ 353 353 pInfo->FileIndex = index; 354 354 pInfo->FileAttributes = VBoxToNTFileAttributes(pDirEntry->Info.Attr.fMode); … … 398 398 pInfo->EndOfFile.QuadPart = pDirEntry->Info.cbObject; 399 399 pInfo->EaSize = 0; 400 pInfo->ShortNameLength = 0; /* @todo ? */400 pInfo->ShortNameLength = 0; /** @todo ? */ 401 401 pInfo->EaSize = 0; 402 402 pInfo->FileId.QuadPart = 0; … … 1146 1146 pInfo->AllocationSize.QuadPart = pFileEntry->cbAllocated; 1147 1147 pInfo->EndOfFile.QuadPart = pFileEntry->cbObject; 1148 pInfo->NumberOfLinks = 1; /* @todo 0? */1148 pInfo->NumberOfLinks = 1; /** @todo 0? */ 1149 1149 pInfo->DeletePending = FALSE; 1150 1150 -
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsf.c
r63087 r63566 543 543 DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = VBoxMRXDeviceControl; 544 544 545 /* @todo start the redirector here RxStartMiniRdr. */545 /** @todo start the redirector here RxStartMiniRdr. */ 546 546 547 547 Log(("VBOXSF: DriverEntry: Init successful!\n")); … … 1107 1107 cRemainingName -= 2; 1108 1108 1109 /* @todo should also check that the drive letter corresponds to the name. */1109 /** @todo should also check that the drive letter corresponds to the name. */ 1110 1110 if (vboxIsPrefixOK(pwc, cRemainingName * sizeof (WCHAR))) 1111 1111 Status = STATUS_SUCCESS; -
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsfhlp.c
r63073 r63566 229 229 230 230 default: 231 /* @todo error handling */231 /** @todo error handling */ 232 232 Status = STATUS_INVALID_PARAMETER; 233 233 Log(("Unexpected vbox error %Rrc\n",
Note:
See TracChangeset
for help on using the changeset viewer.