- Timestamp:
- Oct 22, 2019 9:57:20 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134162
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard.h
r81346 r81444 196 196 int ShClEventSourceCreate(PSHCLEVENTSOURCE pSource, SHCLEVENTSOURCEID uID); 197 197 void ShClEventSourceDestroy(PSHCLEVENTSOURCE pSource); 198 void ShClEventSourceReset(PSHCLEVENTSOURCE pSource); 198 199 /** @} */ 199 200 -
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp
r81352 r81444 176 176 LogFlowFunc(("ID=%RU32\n", pSource->uID)); 177 177 178 ShClEventSourceReset(pSource); 179 180 pSource->uID = 0; 181 pSource->uEventIDNext = 0; 182 } 183 184 /** 185 * Resets an event source. 186 * 187 * @param pSource Event source to reset. 188 */ 189 void ShClEventSourceReset(PSHCLEVENTSOURCE pSource) 190 { 191 LogFlowFunc(("ID=%RU32\n", pSource->uID)); 192 178 193 PSHCLEVENT pEvIt; 179 194 PSHCLEVENT pEvItNext; … … 187 202 pEvIt = NULL; 188 203 } 189 190 pSource->uID = 0;191 pSource->uEventIDNext = 0;192 204 } 193 205
Note:
See TracChangeset
for help on using the changeset viewer.