1 /* 2 * FreeLoader 3 * 4 * Copyright (C) 2003 Eric Kohl 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License along 17 * with this program; if not, write to the Free Software Foundation, Inc., 18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 19 */ 20 21 #pragma once 22 23 /* PROTOTYPES ***************************************************************/ 24 25 VOID 26 AddReactOSArcDiskInfo( 27 IN PSTR ArcName, 28 IN ULONG Signature, 29 IN ULONG Checksum, 30 IN BOOLEAN ValidPartitionTable); 31 32 // 33 // ARC Component Configuration Routines 34 // 35 VOID 36 FldrSetConfigurationData( 37 _Inout_ PCONFIGURATION_COMPONENT_DATA ComponentData, 38 _In_ PCM_PARTIAL_RESOURCE_LIST ResourceList, 39 _In_ ULONG Size); 40 41 VOID 42 FldrCreateSystemKey( 43 _Out_ PCONFIGURATION_COMPONENT_DATA* SystemNode, 44 _In_ PCSTR IdentifierString); 45 46 VOID 47 FldrCreateComponentKey( 48 _In_ PCONFIGURATION_COMPONENT_DATA SystemNode, 49 _In_ CONFIGURATION_CLASS Class, 50 _In_ CONFIGURATION_TYPE Type, 51 _In_ IDENTIFIER_FLAG Flags, 52 _In_ ULONG Key, 53 _In_ ULONG Affinity, 54 _In_ PCSTR IdentifierString, 55 _In_ PCM_PARTIAL_RESOURCE_LIST ResourceList, 56 _In_ ULONG Size, 57 _Out_ PCONFIGURATION_COMPONENT_DATA* ComponentKey); 58 59 /* EOF */ 60