VirtualBox

Ignore:
Timestamp:
Aug 16, 2016 2:05:58 PM (8 years ago)
Author:
vboxsync
Message:

scm: cleaning up todos

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  
    251251         ByteCount, ByteOffset, FileSize));
    252252
    253     /* @todo check if this is necessary. */
     253    /** @todo check if this is necessary. */
    254254#ifdef FCB_STATE_READCACHING_ENABLED    /* Correct spelling for Vista 6001 SDK. */
    255255    if (!FlagOn(capFcb->FcbState, FCB_STATE_READCACHING_ENABLED))
     
    268268    }
    269269
    270     /* @todo read 0 bytes == always success? */
     270    /** @todo read 0 bytes == always success? */
    271271    if (   !BufferMdl
    272272        || ByteCount == 0)
     
    373373         ByteCount, ByteOffset, FileSize));
    374374
    375     /* @todo allow to write 0 bytes. */
     375    /** @todo allow to write 0 bytes. */
    376376    if (   !BufferMdl
    377377        || ByteCount == 0)
     
    469469
    470470        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. */
    472472            Log(("VBOXSF: MRxLocks: Unsupported LOWIO_OP_UNLOCK_MULTIPLE!\n",
    473473                 LowIoContext->Operation));
  • trunk/src/VBox/Additions/WINNT/SharedFolders/driver/info.c

    r63077 r63566  
    350350                    pInfo->EndOfFile.QuadPart      = pDirEntry->Info.cbObject;
    351351                    pInfo->EaSize                  = 0;
    352                     pInfo->ShortNameLength         = 0; /* @todo ? */
     352                    pInfo->ShortNameLength         = 0; /** @todo ? */
    353353                    pInfo->FileIndex               = index;
    354354                    pInfo->FileAttributes          = VBoxToNTFileAttributes(pDirEntry->Info.Attr.fMode);
     
    398398                    pInfo->EndOfFile.QuadPart      = pDirEntry->Info.cbObject;
    399399                    pInfo->EaSize                  = 0;
    400                     pInfo->ShortNameLength         = 0; /* @todo ? */
     400                    pInfo->ShortNameLength         = 0; /** @todo ? */
    401401                    pInfo->EaSize                  = 0;
    402402                    pInfo->FileId.QuadPart         = 0;
     
    11461146                    pInfo->AllocationSize.QuadPart = pFileEntry->cbAllocated;
    11471147                    pInfo->EndOfFile.QuadPart      = pFileEntry->cbObject;
    1148                     pInfo->NumberOfLinks           = 1; /* @todo 0? */
     1148                    pInfo->NumberOfLinks           = 1; /** @todo 0? */
    11491149                    pInfo->DeletePending           = FALSE;
    11501150
  • trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsf.c

    r63087 r63566  
    543543    DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = VBoxMRXDeviceControl;
    544544
    545     /* @todo start the redirector here RxStartMiniRdr. */
     545    /** @todo start the redirector here RxStartMiniRdr. */
    546546
    547547    Log(("VBOXSF: DriverEntry: Init successful!\n"));
     
    11071107               cRemainingName -= 2;
    11081108
    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. */
    11101110               if (vboxIsPrefixOK(pwc, cRemainingName * sizeof (WCHAR)))
    11111111                   Status = STATUS_SUCCESS;
  • trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsfhlp.c

    r63073 r63566  
    229229
    230230    default:
    231         /* @todo error handling */
     231        /** @todo error handling */
    232232        Status = STATUS_INVALID_PARAMETER;
    233233        Log(("Unexpected vbox error %Rrc\n",
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette