|
|
|
@ -0,0 +1,25 @@ |
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/filesystem/fsp_pr.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service::FileSystem { |
|
|
|
|
|
|
|
FSP_PR::FSP_PR() : ServiceFramework{"fsp:pr"} { |
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = { |
|
|
|
{0, nullptr, "RegisterProgram"}, |
|
|
|
{1, nullptr, "UnregisterProgram"}, |
|
|
|
{2, nullptr, "SetCurrentProcess"}, |
|
|
|
{256, nullptr, "SetEnabledProgramVerification"}, |
|
|
|
}; |
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions); |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace Service::FileSystem
|