- Timestamp:
- Apr 27, 2007 11:31:24 AM (18 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r2390 r2393 666 666 console->mConsoleVRDPServer->USBBackendDelete (u32ClientId); 667 667 } 668 669 if (fu32Intercepted & VRDP_CLIENT_INTERCEPT_CLIPBOARD)670 {671 console->mConsoleVRDPServer->ClipboardDelete (u32ClientId);672 }673 668 #else 674 669 console->mConsoleVRDPServer->DeleteUSBBackend (); … … 677 672 #ifdef VBOX_VRDP 678 673 #ifdef VRDP_MC 674 if (fu32Intercepted & VRDP_CLIENT_INTERCEPT_CLIPBOARD) 675 { 676 console->mConsoleVRDPServer->ClipboardDelete (u32ClientId); 677 } 678 679 679 if (fu32Intercepted & VRDP_CLIENT_INTERCEPT_AUDIO) 680 680 { … … 809 809 AssertReturnVoid (console->mConsoleVRDPServer); 810 810 811 #ifdef VBOX_VRDP 811 812 console->mConsoleVRDPServer->ClipboardCreate (u32ClientId, ppfn, ppv); 813 #endif /* VBOX_VRDP */ 812 814 813 815 LogFlowFuncLeave(); -
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r2386 r2393 525 525 int rc = VINF_SUCCESS; 526 526 527 #ifdef VBOX_VRDP 527 528 ConsoleVRDPServer *pServer = static_cast <ConsoleVRDPServer *>(pvExtension); 528 529 … … 609 610 rc = VERR_NOT_SUPPORTED; 610 611 } 611 612 #endif /* VBOX_VRDP */ 613 612 614 return rc; 613 615 }
Note:
See TracChangeset
for help on using the changeset viewer.