vbox的更動 63565 路徑 trunk/src/VBox/HostServices
- 時間撮記:
- 2016-8-16 下午02:05:19 (8 年 以前)
- 位置:
- trunk/src/VBox/HostServices
- 檔案:
-
- 修改 4 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/HostServices/HostChannel/HostChannel.cpp
r62804 r63565 143 143 if (RT_SUCCESS(rc)) 144 144 { 145 /* @todo check a duplicate. */145 /** @todo check a duplicate. */ 146 146 147 147 RTListAppend(&pCtx->listProviders, &pProvider->nodeContext); … … 164 164 if (RT_SUCCESS(rc)) 165 165 { 166 /* @todo check that the provider is in the list. */167 /* @todo mark the provider as invalid in each instance. also detach channels? */166 /** @todo check that the provider is in the list. */ 167 /** @todo mark the provider as invalid in each instance. also detach channels? */ 168 168 169 169 RTListNodeRemove(&pProvider->nodeContext); -
trunk/src/VBox/HostServices/HostChannel/service.cpp
r62876 r63565 262 262 uint32_t u32Handle = 0; 263 263 264 /* @todo make sure that pvName is a nul terminated */264 /** @todo make sure that pvName is a nul terminated */ 265 265 rc = vboxHostChannelAttach(pClient, &u32Handle, (const char *)pvName, u32Flags); 266 266 … … 533 533 uint32_t u32SizeDataReturned = 0; 534 534 535 /* @todo make sure that pvName is a nul terminated */535 /** @todo make sure that pvName is a nul terminated */ 536 536 rc = vboxHostChannelQuery(pClient, (const char *)pvName, u32Code, 537 537 pvParm, cbParm, -
trunk/src/VBox/HostServices/SharedFolders/service.cpp
r62787 r63565 687 687 else if (flags & SHFL_LOCK_WAIT) 688 688 { 689 /* @todo This should be properly implemented by the shared folders service.689 /** @todo This should be properly implemented by the shared folders service. 690 690 * The service thread must never block. If an operation requires 691 691 * blocking, it must be processed by another thread and when it is -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r62876 r63565 476 476 { 477 477 /* For now, we do not treat a failure here as fatal. */ 478 /* @todo Also set the size for SHFL_CF_ACT_CREATE_IF_NEW if478 /** @todo Also set the size for SHFL_CF_ACT_CREATE_IF_NEW if 479 479 SHFL_CF_ACT_FAIL_IF_EXISTS is set. */ 480 480 RTFileSetSize(pHandle->file.Handle, pParms->Info.cbObject); … … 489 489 } 490 490 #if 0 491 /* @todo */491 /** @todo */ 492 492 /* Set new attributes. */ 493 493 if ( ( SHFL_CF_ACT_REPLACE_IF_EXISTS … … 970 970 971 971 if (*pcbBuffer == 0) 972 return VINF_SUCCESS; /* @todo correct? */972 return VINF_SUCCESS; /** @todo correct? */ 973 973 974 974 … … 1361 1361 } 1362 1362 1363 /* @todo other options */1363 /** @todo other options */ 1364 1364 Assert(flags == (SHFL_INFO_GET|SHFL_INFO_FILE)); 1365 1365 … … 1469 1469 } 1470 1470 } 1471 /* TODO:mode for directories */1471 /** @todo mode for directories */ 1472 1472 1473 1473 if (rc == VINF_SUCCESS) … … 1549 1549 } 1550 1550 1551 /* @todo other options */1551 /** @todo other options */ 1552 1552 Assert(flags == (SHFL_INFO_GET|SHFL_INFO_VOLUME)); 1553 1553
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器