mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-01 12:53:27 +01:00
17 lines
348 B
C
17 lines
348 B
C
|
/** @file
|
||
|
UEFI Image Loader library implementation for PE/COFF Images.
|
||
|
|
||
|
Copyright (c) 2021, Marvin Häuser. All rights reserved.<BR>
|
||
|
|
||
|
SPDX-License-Identifier: BSD-3-Clause
|
||
|
**/
|
||
|
|
||
|
#ifndef PE_SUPPORT_H
|
||
|
#define PE_SUPPORT_H
|
||
|
|
||
|
#include "UefiImageFormat.h"
|
||
|
|
||
|
extern CONST UEFI_IMAGE_FORMAT_SUPPORT mPeSupport;
|
||
|
|
||
|
#endif // PE_SUPPORT_H
|