- Timestamp:
- Jul 25, 2007 10:36:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r3817 r3823 600 600 DECLCALLBACK(int) ConsoleVRDPServer::VRDPCallbackUSB (void *pvCallback, void *pvIntercept, uint32_t u32ClientId, uint8_t u8Code, const void *pvRet, uint32_t cbRet) 601 601 { 602 ConsoleVRDPServer *server = static_cast <ConsoleVRDPServer *> (pvCallback);603 604 602 return USBClientResponseCallback (pvIntercept, u32ClientId, u8Code, pvRet, cbRet); 605 603 } … … 607 605 DECLCALLBACK(int) ConsoleVRDPServer::VRDPCallbackClipboard (void *pvCallback, void *pvIntercept, uint32_t u32ClientId, uint32_t u32Function, uint32_t u32Format, const void *pvData, uint32_t cbData) 608 606 { 609 ConsoleVRDPServer *server = static_cast <ConsoleVRDPServer *> (pvCallback);610 611 607 return ClipboardCallback (pvIntercept, u32ClientId, u32Function, u32Format, pvData, cbData); 612 608 } … … 822 818 } 823 819 824 inti;820 unsigned i; 825 821 for (i = 0; i < ELEMENTS(maFramebuffers); i++) 826 822 { … … 926 922 if (mhServer) 927 923 { 924 #ifdef VRDP_NO_COM 925 #else 928 926 HVRDPSERVER hServer = mhServer; 927 #endif /* VRDP_NO_COM */ 929 928 930 929 /* Reset the handle to avoid further calls to the server. */
Note:
See TracChangeset
for help on using the changeset viewer.