2003-01-17 13:18:15 +00:00
|
|
|
/*
|
|
|
|
* ReactOS kernel
|
|
|
|
* Copyright (C) 2002 ReactOS Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
2009-10-27 10:34:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2003-01-17 13:18:15 +00:00
|
|
|
*/
|
2013-03-16 20:08:56 +00:00
|
|
|
/*
|
2003-01-17 13:18:15 +00:00
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
2017-08-26 11:42:32 +00:00
|
|
|
* PROJECT: ReactOS Setup Library
|
|
|
|
* FILE: base/setup/lib/bootsup.h
|
2003-01-17 13:18:15 +00:00
|
|
|
* PURPOSE: Bootloader support functions
|
2018-05-27 19:33:07 +00:00
|
|
|
* PROGRAMMER:
|
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
|
2014-05-12 14:17:37 +00:00
|
|
|
InstallMbrBootCodeToDisk(
|
2017-08-26 11:42:32 +00:00
|
|
|
IN PUNICODE_STRING SystemRootPath,
|
|
|
|
IN PUNICODE_STRING SourceRootPath,
|
|
|
|
IN PCWSTR DestinationDevicePathBuffer);
|
2003-04-05 15:36:34 +00:00
|
|
|
|
2010-09-05 17:09:18 +00:00
|
|
|
NTSTATUS
|
2014-05-12 14:17:37 +00:00
|
|
|
InstallVBRToPartition(
|
2017-08-26 11:42:32 +00:00
|
|
|
IN PUNICODE_STRING SystemRootPath,
|
|
|
|
IN PUNICODE_STRING SourceRootPath,
|
|
|
|
IN PUNICODE_STRING DestinationArcPath,
|
2020-10-19 21:49:26 +00:00
|
|
|
IN PCWSTR FileSystemName);
|
2010-09-05 17:09:18 +00:00
|
|
|
|
2004-06-23 14:09:55 +00:00
|
|
|
NTSTATUS
|
2014-05-12 14:17:37 +00:00
|
|
|
InstallFatBootcodeToFloppy(
|
2017-08-26 11:42:32 +00:00
|
|
|
IN PUNICODE_STRING SourceRootPath,
|
|
|
|
IN PUNICODE_STRING DestinationArcPath);
|
2004-06-23 14:09:55 +00:00
|
|
|
|
2003-01-17 13:18:15 +00:00
|
|
|
/* EOF */
|