Files
eden/src/core/hle/service/spl/csrng.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
416 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-03-22 09:54:16 +03:00
#pragma once
#include "core/hle/service/spl/spl_module.h"
2018-03-22 09:54:16 +03:00
namespace Core {
class System;
}
namespace Service::SPL {
2018-03-22 09:54:16 +03:00
class CSRNG final : public Module::Interface {
public:
explicit CSRNG(Core::System& system_, std::shared_ptr<Module> module_);
~CSRNG() override;
2018-03-22 09:54:16 +03:00
};
} // namespace Service::SPL