反编译TestApplication_Program.h
#ifndef _DecompileTestApplication_Program_
#define _DecompileTestApplication_Program_
struct DecompileTestApplication_MyAnotherProgram;
#include <stdio.h>
typedef struct {
//Variables
int ind;
int a;
int b;
int __refs__;
} DecompileTestApplication_Program;
void DecompileTestApplication_Program_Plan( DecompileTestApplication_MyAnotherProgram* );
//error: expected ')' before '*' token
#endif
反编译TestApplication_MyAnotherProgram.h
#ifndef _DecompileTestApplication_MyAnotherProgram_
#define _DecompileTestApplication_MyAnotherProgram_
struct DecompileTestApplication_Program;
#include <stdio.h>
typedef struct {
//Variables
DecompileTestApplication_Program* program;
int __refs__;
} DecompileTestApplication_MyAnotherProgram;
#endif
这又是我对 C 反编译器的 IL(C#\VB 编译代码)。我尝试了几种方法来做到这一点,但没有得到任何成功的编译。顺便说一句,我使用 Dev-Cpp 用原始 C 编译。