Subversion Repositories public

Rev

Rev 224 | Rev 232 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 224 Rev 225
Line 28... Line 28...
28
#include "disassemble.h"
28
#include "disassemble.h"
29
 
29
 
30
#define eMax 7
30
#define eMax 7
31
 
31
 
32
#define FLD_FIRST	1
32
#define FLD_FIRST	1
33
#define FLD_LAST	24
33
#define FLD_LAST	30
34
#define CON_FIRST	100
34
#define CON_FIRST	100
35
#define CON_LAST	113
35
#define CON_LAST	121
-
 
36
#define ATT_FIRST	200
-
 
37
#define ATT_LAST	200
36
#define ERR_FIRST	500
38
#define ERR_FIRST	500
37
#define ERR_LAST	507
39
#define ERR_LAST	507
38
 
40
 
39
#define ERR_OK			500
41
#define ERR_OK			500
40
#define ERR_NOFILE		501
42
#define ERR_NOFILE		501
Line 84... Line 86...
84
	   disassemble *ds;
86
	   disassemble *ds;
85
	   QFile file;
87
	   QFile file;
86
	   bool qfstat, qfopen;
88
	   bool qfstat, qfopen;
87
	   int __error;
89
	   int __error;
88
	   int indent, tpos, lpos, oldLPos;
90
	   int indent, tpos, lpos, oldLPos;
89
	   int tk;
91
	   int tk, first_tpos;
-
 
92
	   bool history, fakeLap;
90
	   QString con, subCon;
93
	   QString con, subCon;
91
	   garmin_data *gmn, *gmn_lap, *gmn_track;
94
	   garmin_data *gmn, *gmn_lap, *gmn_track;
92
	   garmin_list *list, *list_lap, *list_track;
95
	   garmin_list *list, *list_lap, *list_track;
93
	   D1015 lap;
96
	   D1015 lap, *plap;
94
	   D1009 run, *prun;
97
	   D1009 run, *prun;
95
	   D304 point;
98
	   D304 point;
96
 
99
 
97
};
100
};
98
 
101