mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-22 09:17:36 -05:00
36 lines
595 B
C++
36 lines
595 B
C++
#pragma once
|
|
#include "readrpl.h"
|
|
|
|
std::string
|
|
formatSHT(uint32_t type);
|
|
|
|
void
|
|
printHeader(const Rpl &rpl);
|
|
|
|
void
|
|
printSectionSummary(const Rpl &rpl);
|
|
|
|
void
|
|
printFileInfo(const Rpl &rpl,
|
|
const Section §ion);
|
|
|
|
void
|
|
printRela(const Rpl &rpl,
|
|
const Section §ion);
|
|
|
|
void
|
|
printSymTab(const Rpl &rpl,
|
|
const Section §ion);
|
|
|
|
void
|
|
printRplImports(const Rpl &rpl,
|
|
const Section §ion);
|
|
|
|
void
|
|
printRplCrcs(const Rpl &rpl,
|
|
const Section §ion);
|
|
|
|
void
|
|
printRplExports(const Rpl &rpl,
|
|
const Section §ion);
|