mirror of https://github.com/acidanthera/audk.git
26 lines
492 B
C
26 lines
492 B
C
|
/** @file
|
||
|
Copyright (c) 2023, Marvin Häuser. All rights reserved.
|
||
|
SPDX-License-Identifier: BSD-3-Clause
|
||
|
**/
|
||
|
|
||
|
#ifndef PE_EMIT_COMMON_H
|
||
|
#define PE_EMIT_COMMON_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "ImageTool.h"
|
||
|
|
||
|
void *
|
||
|
ToolImageEmitPe32 (
|
||
|
const image_tool_image_info_t *Image,
|
||
|
uint32_t *FileSize
|
||
|
);
|
||
|
|
||
|
void *
|
||
|
ToolImageEmitPe64 (
|
||
|
const image_tool_image_info_t *Image,
|
||
|
uint32_t *FileSize
|
||
|
);
|
||
|
|
||
|
#endif // PE_EMIT_COMMON_H
|