Newer
Older
emul / emul_inst_exec.h
#ifndef EMUL_INST_EXEC__
#define EMUL_INST_EXEC__

#include "emul_inst_decipher.h"

int emul_inst_exec_loadfile(char*);
void emul_inst_exec_closefile();

/* Execute Step
 * RETURN:
 *   seccsess: 1
 *   failed  : 0 */
int emul_inst_exec_step();

/* Execute Run All
 * RETURN:
 *   seccsess: 1
 *   failed  : 0 */
int emul_inst_exec_run();

#endif