Reactos
at master 27 lines 749 B view raw
1/* 2 * PROJECT: ReactOS Setup Library 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: Bootloader support functions 5 * COPYRIGHT: Copyright 2017-2024 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org> 6 */ 7 8#pragma once 9 10NTSTATUS 11NTAPI 12InstallBootManagerAndBootEntries( 13 _In_ ARCHITECTURE_TYPE ArchType, 14 _In_ PCUNICODE_STRING SystemRootPath, 15 _In_ PCUNICODE_STRING SourceRootPath, 16 _In_ PCUNICODE_STRING DestinationArcPath, 17 _In_ ULONG_PTR Options); 18 19NTSTATUS 20NTAPI 21InstallBootcodeToRemovable( 22 _In_ ARCHITECTURE_TYPE ArchType, 23 _In_ PCUNICODE_STRING RemovableRootPath, 24 _In_ PCUNICODE_STRING SourceRootPath, 25 _In_ PCUNICODE_STRING DestinationArcPath); 26 27/* EOF */