mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
c515d63d97
All because I forgot I went the unixy way for qdb_get_data.
23 lines
489 B
Objective-C
23 lines
489 B
Objective-C
#ifndef __qwaq_debugger_localsview_h
|
|
#define __qwaq_debugger_localsview_h
|
|
|
|
#include <types.h>
|
|
#include "ui/tableview.h"
|
|
#include "debugger/debug.h"
|
|
|
|
@interface LocalsData : Object <TableViewDataSource>
|
|
{
|
|
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;
|
|
}
|
|
+(LocalsData *)withTarget:(qdb_target_t)target;
|
|
-setFunction:(unsigned)fnum;
|
|
-fetchData;
|
|
@end
|
|
|
|
#endif
|