Changeset 63565 in vbox for trunk/src/VBox/HostServices/HostChannel
- Timestamp:
- Aug 16, 2016 2:05:19 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110220
- Location:
- trunk/src/VBox/HostServices/HostChannel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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,
Note:
See TracChangeset
for help on using the changeset viewer.