Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
38
Src/Wasabi/api/script/debugger/debugsymbols.h
Normal file
38
Src/Wasabi/api/script/debugger/debugsymbols.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
#ifndef __DEBUGSYMBOLS_H
|
||||
#define __DEBUGSYMBOLS_H
|
||||
|
||||
#include <bfc/ptrlist.h>
|
||||
#include <bfc/string/StringW.h>
|
||||
#include "disasm.h"
|
||||
|
||||
class SourceCodeLine;
|
||||
class SourceCodeLineI;
|
||||
class MakiDisassembler;
|
||||
|
||||
class DebugSymbols {
|
||||
|
||||
public:
|
||||
|
||||
DebugSymbols(int vcpuid);
|
||||
virtual ~DebugSymbols();
|
||||
|
||||
virtual int getNumLines();
|
||||
virtual int findLine(int pointer);
|
||||
virtual SourceCodeLine *enumLine(int n);
|
||||
|
||||
private:
|
||||
|
||||
PtrList<SourceCodeLineI> lines;
|
||||
MakiDisassembler disasm;
|
||||
StringW binaryfilename;
|
||||
int gotsymbols;
|
||||
PtrList<StringW> files;
|
||||
//PtrList<MakiVariable> vars;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue