32 lines
372 B
C
32 lines
372 B
C
/*++
|
|
|
|
Copyright (c) 2024, Quinn Stephens.
|
|
Provided under the BSD 3-Clause license.
|
|
|
|
Module Name:
|
|
|
|
bootmgr.h
|
|
|
|
Abstract:
|
|
|
|
Boot manager definitions.
|
|
|
|
--*/
|
|
|
|
#ifndef _BOOTMGR_H
|
|
#define _BOOTMGR_H
|
|
|
|
#include "bootlib.h"
|
|
|
|
NTSTATUS
|
|
BmOpenDataStore (
|
|
IN OUT PHANDLE Handle
|
|
);
|
|
|
|
NTSTATUS
|
|
BmMain (
|
|
IN PBOOT_APPLICATION_PARAMETERS ApplicationParameters
|
|
);
|
|
|
|
#endif
|