mirror of
https://github.com/open-goal/jak-project
synced 2026-06-20 08:13:33 -04:00
43c1d223a6
* begin decomp * untabify * finish decomp of gcommon * warning with function name * clean up gkernel-h * fix all types
17 lines
616 B
C++
17 lines
616 B
C++
#pragma once
|
|
#include <string>
|
|
#include "decompiler/Function/Function.h"
|
|
|
|
namespace decompiler {
|
|
|
|
enum class FunctionDefSpecials { NONE, DEFUN_DEBUG };
|
|
|
|
std::string final_defun_out(const Function& func,
|
|
const Env& env,
|
|
const DecompilerTypeSystem& dts,
|
|
FunctionDefSpecials special_mode = FunctionDefSpecials::NONE);
|
|
std::string write_from_top_level(const Function& top_level,
|
|
const DecompilerTypeSystem& dts,
|
|
const LinkedObjectFile& file);
|
|
} // namespace decompiler
|