mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
24 lines
449 B
C++
24 lines
449 B
C++
#pragma once
|
|
|
|
#include "Iop_Module.h"
|
|
|
|
class CIopBios;
|
|
|
|
namespace Iop
|
|
{
|
|
class CSecrman : public CModule
|
|
{
|
|
public:
|
|
CSecrman() = default;
|
|
virtual ~CSecrman() = default;
|
|
|
|
std::string GetId() const override;
|
|
std::string GetFunctionName(unsigned int) const override;
|
|
void Invoke(CMIPS&, unsigned int) override;
|
|
|
|
private:
|
|
void SetMcCommandHandler(uint32);
|
|
void SetMcDevIdHandler(uint32);
|
|
uint32 AuthCard(uint32, uint32, uint32);
|
|
};
|
|
}
|