Changeset 62802 in vbox for trunk/src/VBox
- Timestamp:
- Aug 1, 2016 9:49:47 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/service.cpp
r62467 r62802 268 268 int DragAndDropService::clientConnect(uint32_t u32ClientID, void *pvClient) 269 269 { 270 RT_NOREF1(pvClient); 270 271 if (m_clientMap.size() >= UINT8_MAX) /* Don't allow too much clients at the same time. */ 271 272 { … … 312 313 int DragAndDropService::clientDisconnect(uint32_t u32ClientID, void *pvClient) 313 314 { 315 RT_NOREF1(pvClient); 316 314 317 /* Client not found? Bail out early. */ 315 318 DnDClientMap::iterator itClient = m_clientMap.find(u32ClientID); … … 366 369 uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 367 370 { 371 RT_NOREF1(pvClient); 368 372 LogFlowFunc(("u32ClientID=%RU32, u32Function=%RU32, cParms=%RU32\n", 369 373 u32ClientID, u32Function, cParms));
Note:
See TracChangeset
for help on using the changeset viewer.