Changeset 85985 in vbox for trunk/src/VBox/GuestHost/SharedClipboard
- Timestamp:
- Sep 1, 2020 5:46:22 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 140181
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp
r85864 r85985 259 259 return pEvent->idEvent; 260 260 261 return 0; 262 } 263 264 /** 265 * Returns the current reference count for a specific event. 266 * 267 * @returns Reference count. 268 * @param pSource Event source the specific event is part of. 269 * @param idEvent Event ID to return reference count for. 270 */ 271 uint32_t ShClEventGetRefs(PSHCLEVENTSOURCE pSource, SHCLEVENTID idEvent) 272 { 273 PSHCLEVENT pEvent = shclEventGet(pSource, idEvent); 274 if (pEvent) 275 return pEvent->cRefs; 276 277 AssertMsgFailed(("No event with %RU32\n", idEvent)); 261 278 return 0; 262 279 }
Note:
See TracChangeset
for help on using the changeset viewer.