Changeset 30653 in vbox
- Timestamp:
- Jul 6, 2010 10:53:54 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63402
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vusb.h
r28800 r30653 27 27 #define ___VBox_vusb_h 28 28 29 #include <VBox/cdefs.h> 30 #include <VBox/types.h> 29 #ifndef RDESKTOP 30 # include <VBox/cdefs.h> 31 # include <VBox/types.h> 32 #else 33 # include "runtime.h" 34 #endif 31 35 32 36 RT_C_DECLS_BEGIN … … 354 358 typedef VUSBPORTBITMAP *PVUSBPORTBITMAP; 355 359 360 #ifndef RDESKTOP 356 361 357 362 /** … … 611 616 #endif /* IN_RING3 */ 612 617 618 #endif /* ! RDESKTOP */ 613 619 614 620 … … 652 658 } VUSBDEVICESTATE; 653 659 660 #ifndef RDESKTOP 654 661 655 662 /** … … 781 788 #endif /* IN_RING3 */ 782 789 790 #endif /* ! RDESKTOP */ 783 791 784 792 /** @name URB … … 909 917 /** URB description, can be null. intended for logging. */ 910 918 char *pszDesc; 919 920 #ifdef RDESKTOP 921 /** The next URB in rdesktop-vrdp's linked list */ 922 PVUSBURB pNext; 923 /** The previous URB in rdesktop-vrdp's linked list */ 924 PVUSBURB pPrev; 925 /** The vrdp handle for the URB */ 926 uint32_t handle; 927 /** Pointer used to find the usb proxy device */ 928 struct VUSBDEV *pDev; 929 #endif 911 930 912 931 /** The VUSB data. */ … … 972 991 } Dev; 973 992 993 #ifndef RDESKTOP 974 994 /** The USB device instance this belongs to. 975 995 * This is NULL if the device address is invalid, in which case this belongs to the hub. */ 976 996 PPDMUSBINS pUsbIns; 997 #endif 977 998 /** The device address. 978 999 * This is set at allocation time. */
Note:
See TracChangeset
for help on using the changeset viewer.