mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
53b553e892
Needed for structured types (arrays, structs, etc). The multiple rows aren't implemented yet, but the initial groundwork is done.
13 lines
293 B
Objective-C
13 lines
293 B
Objective-C
#ifndef __qwaq_debugger_funcview_h
|
|
#define __qwaq_debugger_funcview_h
|
|
|
|
#include "ruamoko/qwaq/debugger/views/defview.h"
|
|
|
|
@interface FuncView : DefView
|
|
{
|
|
unsigned *data;
|
|
}
|
|
+(FuncView *)withDef:(qdb_def_t)def in:(void *)data type:(qfot_type_t *)type;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_funcview_h
|