converter.h
00001 #ifndef CONVERTER_H
00002 #define CONVERTER_H
00003
00004 #define CONVERTER_VERSION "v1.3"
00005
00006 typedef struct {
00007 int target_type;
00008 char ihex_file[128];
00009 }conf_opts_t;
00010
00011 enum target { UNDEFINED, VERSION, CONVERT };
00012
00013 #endif