Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
USB_HUB_DESCRIPTOR (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential, Pack=1)]
struct USB_HUB_DESCRIPTOR
{
public byte bDescriptorLength;
public byte bDescriptorType;
public byte bNumberOfPorts;
public short wHubCharacteristics;
public byte bPowerOnToPowerGood;
public byte bHubControlCurrent;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 64)]
public byte[] bRemoveAndPowerMask;
}
VB Definition:
Structure USB_HUB_DESCRIPTOR
Public TODO
End Structure
User-Defined Field Types:
None.
Notes:
This structure is often nested inside the USB_HUB_INFORMATION structure, hence the need for the "pack=1"