38 lines
513 B
C
38 lines
513 B
C
/*++
|
|
|
|
Copyright (c) 2024, Quinn Stephens.
|
|
Provided under the BSD 3-Clause license.
|
|
|
|
Module Name:
|
|
|
|
bootlib.h
|
|
|
|
Abstract:
|
|
|
|
Boot library definitions.
|
|
|
|
--*/
|
|
|
|
#ifndef _BOOTLIB_H
|
|
#define _BOOTLIB_H
|
|
|
|
#include <nt.h>
|
|
#include "bootmgr.h"
|
|
|
|
typedef struct {
|
|
ULONG Flags;
|
|
} BOOT_LIBRARY_PARAMETERS, *PBOOT_LIBRARY_PARAMETERS;
|
|
|
|
NTSTATUS
|
|
BlInitializeLibrary (
|
|
IN PBOOT_INPUT_PARAMETERS InputParameters,
|
|
IN PBOOT_LIBRARY_PARAMETERS LibraryParameters
|
|
);
|
|
|
|
NTSTATUS
|
|
BlDestroyLibrary (
|
|
VOID
|
|
);
|
|
|
|
#endif
|