mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 06:09:57 +00:00
13 lines
355 B
C++
13 lines
355 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
|