private enum ResourceUsage : uint
{
Connectable = 0x1,
Container = 0x2,
NoLocalDevice = 0x4,
Sibling = 0x8,
Attached = 0x10,
All = Connectable | Container | Attached,
Reserved = 0x80000000u
}
Private Enum ResourceUsage As UInteger
Connectable = &H1
Container = &H2
NoLocalDevice = &H4
Sibling = &H8
Attached = &H10
All = Connectable Or Container Or Attached
Reserved = &H80000000UI
End Enum
None.