Files
Pyarmor-Static-Unpack-1shot/ASTree.h

12 lines
305 B
C
Raw Permalink Normal View History

2009-07-26 10:07:13 +00:00
#ifndef _PYC_ASTREE_H
#define _PYC_ASTREE_H
#include "ASTNode.h"
PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod);
2023-06-02 00:36:58 +02:00
void print_src(PycRef<ASTNode> node, PycModule* mod, std::ostream& pyc_output);
2009-07-26 10:07:13 +00:00
2023-06-02 00:36:58 +02:00
void decompyle(PycRef<PycCode> code, PycModule* mod, std::ostream& pyc_output);
2009-07-26 10:07:13 +00:00
#endif