2020-03-30 04:42:31 +00:00
|
|
|
#ifndef __qwaq_debugger_localsview_h
|
|
|
|
#define __qwaq_debugger_localsview_h
|
|
|
|
|
|
|
|
#include <types.h>
|
|
|
|
#include "ui/view.h"
|
|
|
|
#include "debugger/debug.h"
|
|
|
|
|
|
|
|
@interface LocalsView : View
|
|
|
|
{
|
|
|
|
qdb_target_t target;
|
|
|
|
qfot_type_encodings_t target_encodings;
|
|
|
|
unsigned current_fnum;
|
|
|
|
qdb_function_t *func;
|
|
|
|
qdb_auxfunction_t *aux_func;
|
|
|
|
qdb_def_t *defs;
|
|
|
|
void *data;
|
|
|
|
}
|
2020-03-30 07:30:58 +00:00
|
|
|
+(LocalsView *)withRect:(Rect)rect target:(qdb_target_t)target;
|
|
|
|
-initWithRect:(Rect)rect target:(qdb_target_t)target;
|
|
|
|
-setFunction:(unsigned)fnum;
|
2020-03-30 04:42:31 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|