Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 84 of file archwsup.c.
Referenced by ArmHwDetect(), PpcHwDetect(), PpcPrepHwDetect(), and XboxHwDetect().
{ PCONFIGURATION_COMPONENT Component; /* Allocate the root */ FldrArcHwTreeRoot = FldrpHwHeapAlloc(sizeof(CONFIGURATION_COMPONENT_DATA)); if (!FldrArcHwTreeRoot) return; /* Set it up */ Component = &FldrArcHwTreeRoot->ComponentEntry; Component->Class = SystemClass; Component->Type = MaximumType; Component->ConfigurationDataLength = 0; Component->Identifier = 0; Component->IdentifierLength = 0; Component->Flags = 0; Component->Version = 0; Component->Revision = 0; Component->Key = 0; Component->AffinityMask = 0xFFFFFFFF; /* Return the node */ *SystemNode = FldrArcHwTreeRoot; }