2023-06-26 12:23:02 +02:00
|
|
|
/** @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,
|
2023-12-15 14:28:15 +01:00
|
|
|
uint32_t *FileSize,
|
|
|
|
bool Xip
|
2023-06-26 12:23:02 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
void *
|
|
|
|
ToolImageEmitPe64 (
|
|
|
|
const image_tool_image_info_t *Image,
|
2023-12-15 14:28:15 +01:00
|
|
|
uint32_t *FileSize,
|
|
|
|
bool Xip
|
2023-06-26 12:23:02 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
#endif // PE_EMIT_COMMON_H
|