mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
#include <stdio.h>
|
|
#include <windows.h>
|
|
#include <usbdi.h>
|
|
|
|
typedef ULONG NTAPI
|
|
(*USBD_GetInterfaceLengthTYPE)(
|
|
PUSB_INTERFACE_DESCRIPTOR InterfaceDescriptor,
|
|
PUCHAR BufferEnd
|
|
);
|
|
|
|
int main()
|
|
{
|
|
HMODULE Lib;
|
|
USB_INTERFACE_DESCRIPTOR InterfaceDescriptor;
|
|
USBD_GetInterfaceLengthTYPE USBD_GetInterfaceLength;
|
|
|
|
InterfaceDescriptor.bLength = 10;
|
|
InterfaceDescriptor.bNumEndpoints = 2;
|
|
InterfaceDescriptor.bDescriptorType = /*USB_INTERFACE_DESCRIPTOR_TYPE*/2;
|
|
InterfaceDescriptor.iInterface = 0x1;
|
|
|
|
Lib = LoadLibraryEx("usbd.sys", NULL, DONT_RESOLVE_DLL_REFERENCES);
|
|
USBD_GetInterfaceLength = (USBD_GetInterfaceLengthTYPE)GetProcAddress(Lib, "USBD_GetInterfaceLength");
|
|
printf("%X\n", USBD_GetInterfaceLength(&InterfaceDescriptor, (PUCHAR)((DWORD)&InterfaceDescriptor + sizeof(InterfaceDescriptor))));
|
|
FreeLibrary(Lib);
|
|
|
|
Lib = LoadLibraryEx("usbd.ms", NULL, DONT_RESOLVE_DLL_REFERENCES);
|
|
USBD_GetInterfaceLength = (USBD_GetInterfaceLengthTYPE)GetProcAddress(Lib, "USBD_GetInterfaceLength");
|
|
printf("%X\n", USBD_GetInterfaceLength(&InterfaceDescriptor, (PUCHAR)((DWORD)&InterfaceDescriptor + sizeof(InterfaceDescriptor))));
|
|
FreeLibrary(Lib);
|
|
return 0;
|
|
}
|
|
|