2003-01-17 13:18:15 +00:00
|
|
|
/*
|
2024-08-30 11:40:34 +00:00
|
|
|
* PROJECT: ReactOS Setup Library
|
|
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
|
|
* PURPOSE: Bootloader support functions
|
|
|
|
* COPYRIGHT: Copyright 2017-2024 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
|
2003-01-17 13:18:15 +00:00
|
|
|
*/
|
|
|
|
|
2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2003-01-17 13:18:15 +00:00
|
|
|
|
2003-04-05 15:36:34 +00:00
|
|
|
NTSTATUS
|
2024-11-22 20:45:06 +00:00
|
|
|
NTAPI
|
2024-08-30 11:40:34 +00:00
|
|
|
InstallBootManagerAndBootEntries(
|
|
|
|
_In_ ARCHITECTURE_TYPE ArchType,
|
|
|
|
_In_ PCUNICODE_STRING SystemRootPath,
|
|
|
|
_In_ PCUNICODE_STRING SourceRootPath,
|
|
|
|
_In_ PCUNICODE_STRING DestinationArcPath,
|
|
|
|
_In_ ULONG_PTR Options);
|
2010-09-05 17:09:18 +00:00
|
|
|
|
2004-06-23 14:09:55 +00:00
|
|
|
NTSTATUS
|
2024-11-22 20:45:06 +00:00
|
|
|
NTAPI
|
2024-08-30 11:40:34 +00:00
|
|
|
InstallBootcodeToRemovable(
|
|
|
|
_In_ ARCHITECTURE_TYPE ArchType,
|
|
|
|
_In_ PCUNICODE_STRING RemovableRootPath,
|
|
|
|
_In_ PCUNICODE_STRING SourceRootPath,
|
|
|
|
_In_ PCUNICODE_STRING DestinationArcPath);
|
2004-06-23 14:09:55 +00:00
|
|
|
|
2003-01-17 13:18:15 +00:00
|
|
|
/* EOF */
|