Project

General

Profile

Actions

Plugins Python API » History » Revision 1

Revision 1/21 | Next »
Alexis Jeandet, 18/09/2015 06:21 PM


Plugins Python API

All SocExplorer plugins expose some common functions and their own functions to the embedded Python terminal.

Common Functions

All this functions are either implemented in the base class socexplorerplugin or in the plugin itself.

Function list:
  • QVariantList Read (unsigned int address, unsigned int count);
  • void Write (unsigned int address, QList<QVariant> dataList);
    virtual void closeMe();
    virtual void activate(bool flag);
    virtual void setInstanceName(const QString& newName);

    virtual bool dumpMemory(unsigned int address,unsigned int count,QString file);
    virtual bool memSet(unsigned int address,int value, unsigned int count);
    virtual bool loadbin(unsigned int address,QString file);
    virtual bool loadfile(abstractBinFile* file);
    virtual bool dumpMemory(unsigned int address,unsigned int count,QString file,const QString& format);


Updated by Alexis Jeandet over 8 years ago · 1 revisions

Also available in: PDF HTML TXT