jak-project/decompiler/util/config_parsers.h
water111 542edfb164
[compiler/decompiler] Take the address of a variable (#554)
* support taking the address of variables

* partially working stack variables

* implement type cast stuff

* remove final
2021-06-04 13:43:19 -04:00

11 lines
353 B
C++

#pragma once
#include <vector>
#include "decompiler/config.h"
#include "third-party/json.hpp"
namespace decompiler {
std::vector<StackStructureHint> parse_stack_structure_hints(const nlohmann::json& json);
std::unordered_map<int, std::vector<decompiler::RegisterTypeCast>> parse_cast_hints(
const nlohmann::json& casts);
} // namespace decompiler