Changeset 1569 in vbox
- Timestamp:
- Mar 20, 2007 4:38:10 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19670
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/usblib.h
r1 r1569 199 199 */ 200 200 201 /* 201 /** 202 202 * Initialize the USB library 203 203 * 204 204 * @returns VBox status code. 205 205 */ 206 USBR3DECL(int) usbLibInit();207 208 /* 206 VBOXDDU_DECL(int) usbLibInit(); 207 208 /** 209 209 * Terminate the USB library 210 210 * 211 211 * @returns VBox status code. 212 212 */ 213 USBR3DECL(int) usbLibTerm();214 215 /* 213 VBOXDDU_DECL(int) usbLibTerm(); 214 215 /** 216 216 * Add USB device filter 217 217 * … … 222 222 * @param ppID Pointer to filter id 223 223 */ 224 USBR3DECL(int) usbLibInsertFilter(const char *pszVendor, const char *pszProduct, const char *pszRevision, void **ppID);225 226 /* 224 VBOXDDU_DECL(int) usbLibInsertFilter(const char *pszVendor, const char *pszProduct, const char *pszRevision, void **ppID); 225 226 /** 227 227 * Remove USB device filter 228 228 * … … 230 230 * @param aID Filter id 231 231 */ 232 USBR3DECL(int) usbLibRemoveFilter (void *aID);233 234 /* 232 VBOXDDU_DECL(int) usbLibRemoveFilter (void *aID); 233 234 /** 235 235 * Return all attached USB devices. 236 236 * … … 239 239 * @param pcbNumDevices Number of USB devices in the list 240 240 */ 241 USBR3DECL(int) usbLibGetDevices(PUSBDEVICE *ppDevices, uint32_t *pcbNumDevices);242 243 /* 241 VBOXDDU_DECL(int) usbLibGetDevices(PUSBDEVICE *ppDevices, uint32_t *pcbNumDevices); 242 243 /** 244 244 * Check for USB device arrivals or removals 245 245 * 246 246 * @returns boolean 247 247 */ 248 USBR3DECL(bool) usbLibHasPendingDeviceChanges();248 VBOXDDU_DECL(bool) usbLibHasPendingDeviceChanges(); 249 249 250 250 /** @} */ -
trunk/src/VBox/Devices/Makefile
r1566 r1569 63 63 # 64 64 VBoxDDU_TEMPLATE = VBOXR3 65 VBoxDDU_SDKS.win = WINPSDK66 65 VBoxDDU_DEFS = IN_VBOXDDU 66 ifdef VBOX_WITH_USB 67 VBoxDDU_DEFS.win = VBOX_WITH_USB 68 VBoxDDU_SDKS.win = WINPSDK W2K3DDK 69 VBoxDDU_SOURCES.win = \ 70 USB/win32/USBLib-win32.cpp 71 else 72 VBoxDDU_SDKS.win = WINPSDK 73 endif 67 74 VBoxDDU_SOURCES = \ 68 75 Storage/VDICore.cpp 69 76 # Storage/VmdkHDDCore.cpp 70 77 VBoxDDU_LIBS = \ 71 $(PATH_LIB)/DevicesR3$(VBOX_SUFF_LIB) \72 $(PATH_LIB)/Drivers$(VBOX_SUFF_LIB) \73 $(PATH_LIB)/PcDefBiosLogo$(VBOX_SUFF_LIB) \74 78 $(LIB_RUNTIME) 75 79 ifeq ($(BUILD_TARGET),l4) … … 473 477 Drivers_SOURCES.win += \ 474 478 USB/USBProxyDevice.cpp \ 475 USB/win32/USBProxyDevice-win32.cpp \ 476 USB/win32/USBLib-win32.cpp 479 USB/win32/USBProxyDevice-win32.cpp 477 480 endif # VBOX_WITH_USB 478 481
Note:
See TracChangeset
for help on using the changeset viewer.