mirror of https://github.com/acidanthera/audk.git
17 lines
343 B
C
17 lines
343 B
C
/** @file
|
|
UEFI Image Loader library implementation for UE Images.
|
|
|
|
Copyright (c) 2023, Marvin Häuser. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
**/
|
|
|
|
#ifndef UE_SUPPORT_H
|
|
#define UE_SUPPORT_H
|
|
|
|
#include "UefiImageFormat.h"
|
|
|
|
extern CONST UEFI_IMAGE_FORMAT_SUPPORT mUeSupport;
|
|
|
|
#endif // UE_SUPPORT_H
|