Files
Pyarmor-Static-Unpack-1shot/ASTree.h
2023-06-02 01:12:59 +02:00

12 lines
305 B
C++

#ifndef _PYC_ASTREE_H
#define _PYC_ASTREE_H
#include "ASTNode.h"
PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod);
void print_src(PycRef<ASTNode> node, PycModule* mod, std::ostream& pyc_output);
void decompyle(PycRef<PycCode> code, PycModule* mod, std::ostream& pyc_output);
#endif