Play-/Source/iop/Iop_Dynamic.h
2018-04-30 21:01:23 +01:00

26 lines
461 B
C++

#pragma once
#include "Iop_Module.h"
namespace Iop
{
class CDynamic : public CModule
{
public:
CDynamic(uint32*);
virtual ~CDynamic();
std::string GetId() const override;
std::string GetFunctionName(unsigned int) const override;
void Invoke(CMIPS&, unsigned int) override;
uint32* GetExportTable() const;
private:
uint32* m_exportTable;
std::string m_name;
};
typedef std::shared_ptr<CDynamic> DynamicPtr;
}