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

23 lines
390 B
C++

#pragma once
#include "Iop_SifMan.h"
namespace Iop
{
class CSifCmd;
class CSifDynamic : public CSifModule
{
public:
CSifDynamic(CSifCmd&, uint32);
virtual ~CSifDynamic();
bool Invoke(uint32, uint32*, uint32, uint32*, uint32, uint8*) override;
uint32 GetServerDataAddress() const;
private:
CSifCmd& m_sifCmd;
uint32 m_serverDataAddress = 0;
};
}