Changeset 41352 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 18, 2012 12:19:49 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78034
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r41214 r41352 36 36 #ifdef VBOX_WITH_USB_VIDEO 37 37 class UsbWebcamInterface; 38 #endif 39 #ifdef VBOX_WITH_USB_CARDREADER 40 class UsbCardReader; 38 41 #endif 39 42 class ConsoleVRDPServer; … … 220 223 #endif 221 224 EventSource *getEventSource() { return mEventSource; } 225 #ifdef VBOX_WITH_USB_CARDREADER 226 UsbCardReader *getUsbCardReader() { return mUsbCardReader; } 227 #endif 222 228 223 229 int VRDPClientLogon(uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain); … … 760 766 UsbWebcamInterface * const mUsbWebcamInterface; 761 767 #endif 768 #ifdef VBOX_WITH_USB_CARDREADER 769 UsbCardReader * const mUsbCardReader; 770 #endif 762 771 BusAssignmentManager* mBusMgr; 763 772 -
trunk/src/VBox/Main/include/ConsoleVRDPServer.h
r40626 r41352 26 26 #include <VBox/RemoteDesktop/VRDEImage.h> 27 27 #include <VBox/RemoteDesktop/VRDEMousePtr.h> 28 #include <VBox/RemoteDesktop/VRDESCard.h> 28 29 29 30 #include <VBox/HostServices/VBoxClipboardExt.h> … … 142 143 int SendVideoSreamOn(bool fFetch); 143 144 #endif 145 146 int SCardRequest(void *pvUser, uint32_t u32Function, const void *pvData, uint32_t cbData); 144 147 145 148 private: … … 263 266 /* Mouse pointer interface. */ 264 267 VRDEMOUSEPTRINTERFACE m_interfaceMousePtr; 268 269 /* Smartcard interface. */ 270 VRDESCARDINTERFACE m_interfaceSCard; 271 VRDESCARDCALLBACKS m_interfaceCallbacksSCard; 272 static DECLCALLBACK(int) VRDESCardCbNotify(void *pvContext, 273 uint32_t u32Id, 274 void *pvData, 275 uint32_t cbData); 276 static DECLCALLBACK(int) VRDESCardCbResponse(void *pvContext, 277 int rcRequest, 278 void *pvUser, 279 uint32_t u32Function, 280 void *pvData, 281 uint32_t cbData); 265 282 }; 266 283
Note:
See TracChangeset
for help on using the changeset viewer.