enumstd.os.windows.OBJECT_INFORMATION_CLASS[src]

Fields

ObjectBasicInformation = 0
ObjectNameInformation = 1
ObjectTypeInformation = 2
ObjectTypesInformation = 3
ObjectHandleFlagInformation = 4
ObjectSessionInformation = 5
MaxObjectInfoClass

Source Code

Source code
pub const OBJECT_INFORMATION_CLASS = enum(c_int) {
    ObjectBasicInformation = 0,
    ObjectNameInformation = 1,
    ObjectTypeInformation = 2,
    ObjectTypesInformation = 3,
    ObjectHandleFlagInformation = 4,
    ObjectSessionInformation = 5,
    MaxObjectInfoClass,
}