Changeset 97725 in vbox for trunk/src/VBox/Main
- Timestamp:
- Dec 1, 2022 1:50:40 PM (2 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestDnDPrivate.h
r96407 r97725 822 822 823 823 int notifyAboutGuestResponse(void) const; 824 int waitForGuestResponse(RTMSINTERVAL msTimeout = 500) const;824 int waitForGuestResponse(RTMSINTERVAL msTimeout = 3000) const; 825 825 826 826 void setActionsAllowed(VBOXDNDACTIONLIST a) { m_dndLstActionsAllowed = a; } -
trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp
r97719 r97725 711 711 * 712 712 * @returns VBox status code. 713 * @param msTimeout Timeout (in ms) for waiting. Optional, waits 500 ms if not specified.714 */ 715 int GuestDnDState::waitForGuestResponse(RTMSINTERVAL msTimeout /*= 500 */) const713 * @param msTimeout Timeout (in ms) for waiting. Optional, waits 3000 ms if not specified. 714 */ 715 int GuestDnDState::waitForGuestResponse(RTMSINTERVAL msTimeout /*= 3000 */) const 716 716 { 717 717 int rc = RTSemEventWait(m_EventSem, msTimeout);
Note:
See TracChangeset
for help on using the changeset viewer.