mirror of
https://github.com/Takiiiiiiii/strato.git
synced 2025-07-17 08:46:39 +00:00
We earlier moved to LGPLv3.0 or Later. This was a mistake as what we wanted was being able to link to proprietary libraries but LGPL is the opposite and it allows linking proprietary libraries to libskyline instead. After further consideration, we've moved to MPL-2.0, it allows linking to proprietary libraries and is a standardized license as compared to adding an exception to GPL.
17 lines
508 B
C++
17 lines
508 B
C++
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/)
|
|
|
|
#pragma once
|
|
|
|
#include "base_proxy.h"
|
|
|
|
namespace skyline::service::am {
|
|
/**
|
|
* @brief ILibraryAppletProxy returns handles to various services (https://switchbrew.org/wiki/Applet_Manager_services#ILibraryAppletProxy)
|
|
*/
|
|
class ILibraryAppletProxy : public BaseProxy {
|
|
public:
|
|
ILibraryAppletProxy(const DeviceState &state, ServiceManager &manager);
|
|
};
|
|
}
|