jak-project/decompiler/data/dir_tpages.h
water111 6366068bc0
Support dir tpages (#671)
* support dir tpages

* fix warnings and bad return

* one more try

* revive the offline test script

* fix this null bug
2021-07-02 14:50:58 -04:00

17 lines
272 B
C++

#pragma once
#include <vector>
#include <string>
namespace decompiler {
struct ObjectFileData;
struct DirTpageResult {
std::vector<int> lengths;
std::string to_source() const;
};
DirTpageResult process_dir_tpages(ObjectFileData& data);
} // namespace decompiler