skyline/app/src/main/cpp/skyline/services/am/controller/IAppletCommonFunctions.h

18 lines
546 B
C++

// SPDX-License-Identifier: MPL-2.0
// Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/)
#pragma once
#include <services/base_service.h>
#include <services/serviceman.h>
namespace skyline::service::am {
/**
* @brief This contains common various functions (https://switchbrew.org/wiki/Applet_Manager_services#IAppletCommonFunctions)
*/
class IAppletCommonFunctions : public BaseService {
public:
IAppletCommonFunctions(const DeviceState &state, ServiceManager &manager);
};
}