1 | /* $Id: USBLibInternal.h 31896 2010-08-24 09:17:44Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * USBLIB - Internal header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Oracle Corporation
|
---|
8 | *
|
---|
9 | * Oracle Corporation confidential
|
---|
10 | * All rights reserved
|
---|
11 | */
|
---|
12 |
|
---|
13 | #ifndef ___USBLibInternal_h
|
---|
14 | #define ___USBLibInternal_h
|
---|
15 |
|
---|
16 | #include <VBox/cdefs.h>
|
---|
17 | #include <VBox/types.h>
|
---|
18 |
|
---|
19 | RT_C_DECLS_BEGIN
|
---|
20 | #ifdef RT_OS_WINDOWS
|
---|
21 | char *usblibQueryDeviceName(uint32_t idxDev);
|
---|
22 | char *usblibQueryDeviceRegPath(uint32_t idxDev);
|
---|
23 | void usbLibEnumerateHostControllers(PUSBDEVICE *ppDevices, uint32_t *DevicesConnected);
|
---|
24 | #endif /* RT_OS_WINDOWS */
|
---|
25 | RT_C_DECLS_END
|
---|
26 |
|
---|
27 | #endif
|
---|
28 |
|
---|