mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-16 09:02:22 -07:00
12 lines
498 B
C
12 lines
498 B
C
// Copyright (c) Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
#ifndef PE_MAKE_DEBUG_DIR_H
|
|
#define PE_MAKE_DEBUG_DIR_H
|
|
|
|
internal String8 pe_make_debug_directory_pdb_obj(Arena *arena, COFF_MachineType machine, Guid guid, U32 age, COFF_TimeStamp time_stamp, String8 path);
|
|
internal String8 pe_make_debug_directory_rdi_obj(Arena *arena, COFF_MachineType machine, Guid guid, U32 age, COFF_TimeStamp time_stamp, String8 path);
|
|
|
|
#endif // PE_MAKE_DEBUG_DIR_H
|
|
|