Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 274 of file attrib.c.
Referenced by NtfsGetVolumeData(), and NtfsOpenMft().
{ PATTRIBUTE Attribute; Attribute = (PATTRIBUTE)((ULONG_PTR)FileRecord + FileRecord->AttributeOffset); while (Attribute < (PATTRIBUTE)((ULONG_PTR)FileRecord + FileRecord->BytesInUse) && Attribute->AttributeType != (ATTRIBUTE_TYPE)-1) { NtfsDumpAttribute (Attribute); Attribute = (PATTRIBUTE)((ULONG_PTR)Attribute + Attribute->Length); } }