Changeset 32472 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 14, 2010 10:26:19 AM (14 years ago)
- Location:
- trunk/src/VBox/Devices/USB
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/USBProxyDevice.h
r31662 r32472 19 19 #define ___USBProxyDevice_h 20 20 21 #ifndef RDESKTOP 22 # include <VBox/cdefs.h> 23 # include <VBox/vusb.h> 24 #else 25 # include "runtime.h" 26 # include "vusb.h" 27 #endif 21 #include <VBox/cdefs.h> 22 #include <VBox/vusb.h> 28 23 29 24 RT_C_DECLS_BEGIN -
trunk/src/VBox/Devices/USB/linux/USBProxyDevice-linux.cpp
r31662 r32472 30 30 *******************************************************************************/ 31 31 #define LOG_GROUP LOG_GROUP_DRV_USBPROXY 32 #ifndef RDESKTOP 33 # 34 # 35 #endif 32 33 #include <iprt/stdint.h> 34 #include <iprt/err.h> 35 36 36 #include <sys/types.h> 37 37 #include <sys/stat.h> … … 72 72 #ifndef RDESKTOP 73 73 # include <VBox/pdm.h> 74 # include <VBox/err.h> 75 # include <VBox/log.h> 76 # include <iprt/alloc.h> 77 # include <iprt/assert.h> 78 # include <iprt/asm.h> 79 # include <iprt/ctype.h> 80 # include <iprt/file.h> 81 # include <iprt/linux/sysfs.h> 82 # include <iprt/stream.h> 83 # include <iprt/string.h> 74 #else 75 # define RTCRITSECT void * 76 static inline int rtcsNoop() { return VINF_SUCCESS; } 77 # define RTCritSectInit(a) rtcsNoop() 78 # define RTCritSectDelete(a) rtcsNoop() 79 # define RTCritSectEnter(a) rtcsNoop() 80 # define RTCritSectLeave(a) rtcsNoop() 81 #endif 82 #include <VBox/err.h> 83 #include <VBox/log.h> 84 #include <iprt/alloc.h> 85 #include <iprt/assert.h> 86 #include <iprt/asm.h> 87 #include <iprt/ctype.h> 88 #include <iprt/file.h> 89 #include <iprt/linux/sysfs.h> 90 #include <iprt/stream.h> 91 #include <iprt/string.h> 92 #if defined(NO_PORT_RESET) && !defined(NO_LOGICAL_RECONNECT) 84 93 # include <iprt/thread.h> 85 # include <iprt/time.h>86 # include "../USBProxyDevice.h"87 #else88 89 # include "../rdesktop.h"90 # include "runtime.h"91 # include "USBProxyDevice.h"92 # ifdef VBOX_USB_WITH_SYSFS93 # include "sysfs.h"94 # endif95 94 #endif 96 95 #include <iprt/time.h> 96 #include "../USBProxyDevice.h" 97 97 98 98 /*******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.