Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed Jun 26, 2020
1 parent 3619536 commit 0f3d6c1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions xle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1334,6 +1334,13 @@ bool XLE::isBigEndian()
return false;
}

qint64 XLE::getEntryPointOffset(XBinary::_MEMORY_MAP *pMemoryMap)
{
Q_UNUSED(pMemoryMap)
// TODO
return 0;
}

QMap<quint64, QString> XLE::getImageLEMagics()
{
QMap<quint64, QString> mapResult;
Expand Down
2 changes: 1 addition & 1 deletion xle.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ class XLE : public XMSDOS
QList<XLE_DEF::o32_obj> getObjects();

virtual _MEMORY_MAP getMemoryMap();

virtual MODE getMode();
virtual QString getArch();
virtual bool isBigEndian();
virtual qint64 getEntryPointOffset(_MEMORY_MAP *pMemoryMap);

static QMap<quint64, QString> getImageLEMagics();
static QMap<quint64, QString> getImageLEMagicsS();
Expand Down

0 comments on commit 0f3d6c1

Please sign in to comment.