mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-22 14:53:15 +00:00
24 lines
755 B
C#
24 lines
755 B
C#
|
|
namespace DSInternals.SAM.Interop
|
|
{
|
|
/// <summary>
|
|
/// The DOMAIN_INFORMATION_CLASS enumeration indicates how to interpret the Buffer parameter for SamrSetInformationDomain and SamrQueryInformationDomain.
|
|
/// </summary>
|
|
/// <see>https://msdn.microsoft.com/en-us/library/cc245570.aspx</see>
|
|
internal enum SamDomainInformationClass
|
|
{
|
|
PasswordInformation = 1,
|
|
GeneralInformation = 2,
|
|
LogoffInformation = 3,
|
|
OemInformation = 4,
|
|
NameInformation = 5,
|
|
ReplicationInformation = 6,
|
|
ServerRoleInformation = 7,
|
|
ModifiedInformation = 8,
|
|
StateInformation = 9,
|
|
GeneralInformation2 = 11,
|
|
LockoutInformation = 12,
|
|
ModifiedInformation2 = 13
|
|
}
|
|
}
|