1 | /* $Id: VBoxUsbTool.h 37047 2011-05-12 10:29:26Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Windows USB R0 Tooling.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 | #ifndef ___VBoxUsbTool_h___
|
---|
18 | #define ___VBoxUsbTool_h___
|
---|
19 |
|
---|
20 | #include "VBoxDrvTool.h"
|
---|
21 |
|
---|
22 | RT_C_DECLS_BEGIN
|
---|
23 | #pragma warning( disable : 4200 )
|
---|
24 | #include <usbdi.h>
|
---|
25 | #pragma warning( default : 4200 )
|
---|
26 | #include <usbdlib.h>
|
---|
27 |
|
---|
28 | RT_C_DECLS_END
|
---|
29 |
|
---|
30 | #if 0
|
---|
31 | /* enable this in case we include this in a dll*/
|
---|
32 | # ifdef IN_VBOXUSBTOOL
|
---|
33 | # define VBOXUSBTOOL_DECL(a_Type) DECLEXPORT(a_Type)
|
---|
34 | # else
|
---|
35 | # define VBOXUSBTOOL_DECL(a_Type) DECLIMPORT(a_Type)
|
---|
36 | # endif
|
---|
37 | #else
|
---|
38 | /*enable this in case we include this in a static lib*/
|
---|
39 | # define VBOXUSBTOOL_DECL(a_Type) a_Type VBOXCALL
|
---|
40 | #endif
|
---|
41 |
|
---|
42 |
|
---|
43 | RT_C_DECLS_BEGIN
|
---|
44 |
|
---|
45 | VBOXUSBTOOL_DECL(PURB) VBoxUsbToolUrbAlloc(USHORT u16Function, USHORT cbSize);
|
---|
46 | VBOXUSBTOOL_DECL(PURB) VBoxUsbToolUrbAllocZ(USHORT u16Function, USHORT cbSize);
|
---|
47 | VBOXUSBTOOL_DECL(PURB) VBoxUsbToolUrbReinit(PURB pUrb, USHORT cbSize, USHORT u16Function);
|
---|
48 | VBOXUSBTOOL_DECL(VOID) VBoxUsbToolUrbFree(PURB pUrb);
|
---|
49 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolUrbPost(PDEVICE_OBJECT pDevObj, PURB pUrb, ULONG dwTimeoutMs);
|
---|
50 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolGetDescriptor(PDEVICE_OBJECT pDevObj, void *pvBuffer, int cbBuffer, int Type, int iIndex, int LangId, ULONG dwTimeoutMs);
|
---|
51 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolGetStringDescriptorA(PDEVICE_OBJECT pDevObj, char *pResult, ULONG cbResult, int iIndex, int LangId, ULONG dwTimeoutMs);
|
---|
52 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolGetLangID(PDEVICE_OBJECT pDevObj, int *pLangId, ULONG dwTimeoutMs);
|
---|
53 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolGetDeviceSpeed(PDEVICE_OBJECT pDevObj, BOOLEAN *pbIsHigh);
|
---|
54 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolPipeClear(PDEVICE_OBJECT pDevObj, HANDLE hPipe, bool fReset);
|
---|
55 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolCurrentFrame(PDEVICE_OBJECT pDevObj, PIRP pIrp, PULONG piFrame);
|
---|
56 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolDevUnconfigure(PDEVICE_OBJECT pDevObj);
|
---|
57 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolIoInternalCtlSendAsync(PDEVICE_OBJECT pDevObj, ULONG uCtl, void *pvArg1, void *pvArg2, PKEVENT pEvent, PIO_STATUS_BLOCK pIoStatus);
|
---|
58 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolIoInternalCtlSendSync(PDEVICE_OBJECT pDevObj, ULONG uCtl, void *pvArg1, void *pvArg2);
|
---|
59 | VBOXUSBTOOL_DECL(PIRP) VBoxUsbToolIoBuildAsyncInternalCtl(PDEVICE_OBJECT pDevObj, ULONG uCtl, void *pvArg1, void *pvArg2);
|
---|
60 | VBOXUSBTOOL_DECL(NTSTATUS) VBoxUsbToolIoInternalCtlSendSyncWithTimeout(PDEVICE_OBJECT pDevObj, ULONG uCtl, void *pvArg1, void *pvArg2, ULONG dwTimeoutMs);
|
---|
61 | VBOXUSBTOOL_DECL(VOID) VBoxUsbToolStringDescriptorToUnicodeString(PUSB_STRING_DESCRIPTOR pDr, PUNICODE_STRING pUnicode);
|
---|
62 |
|
---|
63 |
|
---|
64 | RT_C_DECLS_END
|
---|
65 |
|
---|
66 | #endif /* #ifndef ___VBoxUsbTool_h___ */
|
---|