mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-23 11:35:19 +01:00
16 lines
422 B
C
16 lines
422 B
C
|
/** @file
|
||
|
Copyright (c) 2020, vit9696. All rights reserved.
|
||
|
SPDX-License-Identifier: BSD-3-Clause
|
||
|
**/
|
||
|
|
||
|
#ifndef MICROSOFT_WINDOWS_H
|
||
|
#define MICROSOFT_WINDOWS_H
|
||
|
|
||
|
///
|
||
|
/// Windows bootloader path.
|
||
|
/// REF: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/bcd-system-store-settings-for-uefi
|
||
|
///
|
||
|
#define MS_BOOTER_DEFAULT_FILE_NAME L"\\EFI\\Microsoft\\Boot\\bootmgfw.efi"
|
||
|
|
||
|
#endif // MICROSOFT_WINDOWS_H
|