Changeset 100566 in vbox for trunk/include
- Timestamp:
- Jul 13, 2023 6:50:43 PM (17 months ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard.h
r100451 r100566 189 189 /** Payload to this event, optional (NULL). */ 190 190 PSHCLEVENTPAYLOAD pPayload; 191 /** Result code (IPRT-style) to assign. */ 192 int rc; 191 193 } SHCLEVENT; 192 194 /** Pointer to a shared clipboard event. */ … … 236 238 uint32_t ShClEventRetain(PSHCLEVENT pEvent); 237 239 uint32_t ShClEventRelease(PSHCLEVENT pEvent); 240 int ShClEventSignalEx(PSHCLEVENT pEvent, int rc, PSHCLEVENTPAYLOAD pPayload); 238 241 int ShClEventSignal(PSHCLEVENT pEvent, PSHCLEVENTPAYLOAD pPayload); 239 242 int ShClEventWait(PSHCLEVENT pEvent, RTMSINTERVAL uTimeoutMs, PSHCLEVENTPAYLOAD *ppPayload); 243 int ShClEventWaitEx(PSHCLEVENT pEvent, RTMSINTERVAL uTimeoutMs, int *pRc, PSHCLEVENTPAYLOAD *ppPayload); 240 244 /** @} */ 241 245 -
trunk/include/VBox/err.h
r100183 r100566 3073 3073 /** Shared Clipboard transfer ID not found. */ 3074 3074 #define VERR_SHCLPB_TRANSFER_ID_NOT_FOUND (-7150) 3075 /** Shared Clipboard guest error. */ 3076 #define VERR_SHCLPB_GUEST_ERROR (-7151) 3077 /** Shared Clipboard event failed error. */ 3078 #define VERR_SHCLPB_EVENT_FAILED (-7152) 3075 3079 /** @} */ 3076 3080
Note:
See TracChangeset
for help on using the changeset viewer.