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.
DICS_FLAG (Enums)
.
C# Definition:
/// <summary>
/// Values specifying the scope of a device property change
/// </summary>
public enum DICS_FLAG : int
{
/// <summary>
/// make change in all hardware profiles
/// </summary>
DICS_FLAG_GLOBAL = 0x00000001,
/// <summary>
/// make change in specified profile only
/// </summary>
DICS_FLAG_CONFIGSPECIFIC = 0x00000002,
/// <summary>
/// 1 or more hardware profile-specific
/// </summary>
DICS_FLAG_CONFIGGENERAL = 0x00000004,
}
VB Definition:
Enum DICS_FLAG
TODO
End Enum
Notes:
None.
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!