mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 00:31:50 +01: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);
|