mirror of
https://github.com/open-goal/jak-project.git
synced 2024-12-03 11:50:58 +00:00
5683f04046
* fix the loader example * improve compiler error message * fix missing cast issue
33 lines
1.3 KiB
C++
33 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace decompiler {
|
|
class FormElement;
|
|
class Form;
|
|
class Env;
|
|
class FormPool;
|
|
class FormStack;
|
|
|
|
FormElement* handle_get_property_value_float(const std::vector<Form*>& forms,
|
|
FormPool& pool,
|
|
const Env& env);
|
|
FormElement* handle_get_property_data(const std::vector<Form*>& forms,
|
|
FormPool& pool,
|
|
const Env& env);
|
|
FormElement* handle_get_property_struct(const std::vector<Form*>& forms,
|
|
FormPool& pool,
|
|
const Env& env);
|
|
|
|
FormElement* handle_get_property_value(const std::vector<Form*>& forms,
|
|
FormPool& pool,
|
|
const Env& env);
|
|
|
|
FormElement* last_two_in_and_to_handle_get_proc(Form* first,
|
|
Form* second,
|
|
const Env& env,
|
|
FormPool& pool,
|
|
FormStack& stack,
|
|
bool part_of_longer_sc);
|
|
} // namespace decompiler
|