summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/pctl/pctl_a.cpp
blob: 9fef0bcf1f875f2d65b9a435ed356e82fc1278fd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                            

                                                         
                                   
                            
                                                                           










                                               
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/pctl/pctl_a.h"

namespace Service {
namespace PCTL {

void PCTL_A::GetService(Kernel::HLERequestContext& ctx) {
    LOG_WARNING(Service, "(STUBBED) called");
    IPC::RequestBuilder rb{ctx, 2};
    rb.Push(RESULT_SUCCESS);
    // TODO(Subv): This should return an IParentalControlService interface.
}

PCTL_A::PCTL_A() : ServiceFramework("pctl:a") {
    static const FunctionInfo functions[] = {
        {0, &PCTL_A::GetService, "GetService"},
    };
    RegisterHandlers(functions);
}

} // namespace PCTL
} // namespace Service