mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 10:35:46 -04:00
Initial community commit
This commit is contained in:
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
|
Reference in New Issue
Block a user