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 Enums, prefix the name with the module name and a period.
ResourceUsage (Enums)
.
Summary
A set of bit flags describing how the resource can be used.Note that this member can be specified only if the dwScope member is equal to RESOURCE_GLOBALNET. This member can be one of the following values defined in the Winnetwk.h header file.
Summary
TODO - a short description
C# Definition:
private enum ResourceUsage : uint
{
Connectable = 0x1,
Container = 0x2,
NoLocalDevice = 0x4,
Sibling = 0x8,
Attached = 0x10,
All = Connectable | Container | Attached,
Reserved = 0x80000000u
}
VB Definition:
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
Notes:
None.
Documentation
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!