DecompileTestApplication_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
DecompileTestApplication_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
これも私の IL (C#\VB コンパイル コード) から C デコンパイラへの変換です。それを行うためにいくつかの方法を試しましたが、コンパイルが成功しません。ところで、私は Dev-Cpp を使用して元の C でコンパイルします。