mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-07-14 13:12:13 +02:00
ncm: employ kernel strats
This commit is contained in:
parent
4ca1137187
commit
96326cc304
@ -18,3 +18,4 @@
|
|||||||
#include <vapours.hpp>
|
#include <vapours.hpp>
|
||||||
#include <stratosphere/lr/lr_types.hpp>
|
#include <stratosphere/lr/lr_types.hpp>
|
||||||
#include <stratosphere/lr/lr_api.hpp>
|
#include <stratosphere/lr/lr_api.hpp>
|
||||||
|
#include <stratosphere/lr/lr_location_resolver_manager_impl.hpp>
|
||||||
|
@ -16,9 +16,12 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "ncm/ncm_types.hpp"
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
#include "ncm/ncm_auto_buffer.hpp"
|
#include <stratosphere/ncm/ncm_auto_buffer.hpp>
|
||||||
#include "ncm/ncm_content_meta.hpp"
|
#include <stratosphere/ncm/ncm_make_path.hpp>
|
||||||
#include "ncm/ncm_content_meta_database.hpp"
|
#include <stratosphere/ncm/ncm_content_id_utils.hpp>
|
||||||
#include "ncm/ncm_content_storage.hpp"
|
#include <stratosphere/ncm/ncm_content_meta.hpp>
|
||||||
#include "ncm/ncm_api.hpp"
|
#include <stratosphere/ncm/ncm_content_meta_database.hpp>
|
||||||
|
#include <stratosphere/ncm/ncm_content_storage.hpp>
|
||||||
|
#include <stratosphere/ncm/ncm_content_manager_impl.hpp>
|
||||||
|
#include <stratosphere/ncm/ncm_api.hpp>
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <vapours.hpp>
|
#include <vapours.hpp>
|
||||||
|
|
||||||
|
@ -13,9 +13,8 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,11 +13,10 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
#include "ncm_rights_cache.hpp"
|
#include <stratosphere/ncm/ncm_i_content_manager.hpp>
|
||||||
#include "ncm_fs_utils.hpp"
|
#include <stratosphere/ncm/ncm_rights_id_cache.hpp>
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere/ncm/ncm_types.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere/ncm/ncm_types.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
#include <stratosphere/ncm/ncm_i_content_meta_database.hpp>
|
#include <stratosphere/ncm/ncm_i_content_meta_database.hpp>
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere/ncm/ncm_types.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
#include <stratosphere/ncm/ncm_i_content_storage.hpp>
|
#include <stratosphere/ncm/ncm_i_content_storage.hpp>
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere/ncm/ncm_i_content_storage.hpp>
|
#include <stratosphere/ncm/ncm_i_content_storage.hpp>
|
||||||
#include <stratosphere/ncm/ncm_i_content_meta_database.hpp>
|
#include <stratosphere/ncm/ncm_i_content_meta_database.hpp>
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere/ncm/ncm_types.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
#include <stratosphere/sf.hpp>
|
#include <stratosphere/sf.hpp>
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere/ncm/ncm_types.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
#include <stratosphere/ncm/ncm_path.hpp>
|
#include <stratosphere/ncm/ncm_path.hpp>
|
||||||
|
@ -13,10 +13,8 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
#include <stratosphere/ncm/ncm_path.hpp>
|
||||||
#include <stratosphere.hpp>
|
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -18,6 +18,7 @@
|
|||||||
#include <stratosphere/ncm/ncm_types.hpp>
|
#include <stratosphere/ncm/ncm_types.hpp>
|
||||||
#include <stratosphere/fs/fs_directory.hpp>
|
#include <stratosphere/fs/fs_directory.hpp>
|
||||||
#include <stratosphere/sf/sf_buffer_tags.hpp>
|
#include <stratosphere/sf/sf_buffer_tags.hpp>
|
||||||
|
#include <stratosphere/kvdb/kvdb_bounded_string.hpp>
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
||||||
|
@ -13,9 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <vapours.hpp>
|
#include <vapours.hpp>
|
||||||
#include <stratosphere/fs/fs_rights_id.hpp>
|
#include <stratosphere/fs/fs_rights_id.hpp>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include "ncm_content_id_utils.hpp"
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,13 +13,12 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_content_manager_impl.hpp"
|
#include "ncm_content_storage_impl.hpp"
|
||||||
|
#include "ncm_read_only_content_storage_impl.hpp"
|
||||||
#include "ncm_content_meta_database_impl.hpp"
|
#include "ncm_content_meta_database_impl.hpp"
|
||||||
#include "ncm_on_memory_content_meta_database_impl.hpp"
|
#include "ncm_on_memory_content_meta_database_impl.hpp"
|
||||||
#include "ncm_content_storage_impl.hpp"
|
#include "ncm_fs_utils.hpp"
|
||||||
#include "ncm_make_path.hpp"
|
|
||||||
#include "ncm_read_only_content_storage_impl.hpp"
|
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,9 +13,8 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_content_meta_database_impl.hpp"
|
#include "ncm_content_meta_database_impl.hpp"
|
||||||
#include "ncm_content_id_utils.hpp"
|
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,9 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_content_meta_database_impl_base.hpp"
|
#include "ncm_content_meta_database_impl_base.hpp"
|
||||||
|
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
@ -13,11 +13,9 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_content_storage_impl.hpp"
|
#include "ncm_content_storage_impl.hpp"
|
||||||
#include "ncm_fs_utils.hpp"
|
#include "ncm_fs_utils.hpp"
|
||||||
#include "ncm_make_path.hpp"
|
|
||||||
#include "ncm_content_id_utils.hpp"
|
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,15 +13,11 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
#include "ncm_placeholder_accessor.hpp"
|
|
||||||
#include "ncm_rights_cache.hpp"
|
|
||||||
#include "ncm_content_storage_impl_base.hpp"
|
#include "ncm_content_storage_impl_base.hpp"
|
||||||
#include "ncm_fs_utils.hpp"
|
#include "ncm_placeholder_accessor.hpp"
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
@ -13,7 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_fs_utils.hpp"
|
#include "ncm_fs_utils.hpp"
|
||||||
|
|
||||||
namespace ams::ncm::impl {
|
namespace ams::ncm::impl {
|
@ -13,9 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
namespace ams::ncm::impl {
|
namespace ams::ncm::impl {
|
@ -13,9 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_make_path.hpp"
|
|
||||||
#include "ncm_content_id_utils.hpp"
|
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,7 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_on_memory_content_meta_database_impl.hpp"
|
#include "ncm_on_memory_content_meta_database_impl.hpp"
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
@ -13,9 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_content_meta_database_impl.hpp"
|
#include "ncm_content_meta_database_impl.hpp"
|
||||||
|
|
@ -13,9 +13,9 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_placeholder_accessor.hpp"
|
#include "ncm_placeholder_accessor.hpp"
|
||||||
#include "ncm_make_path.hpp"
|
#include "ncm_fs_utils.hpp"
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,14 +13,9 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
#include "ncm_fs_utils.hpp"
|
|
||||||
#include "ncm_make_path.hpp"
|
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
||||||
class PlaceHolderAccessor {
|
class PlaceHolderAccessor {
|
@ -13,9 +13,9 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_fs_utils.hpp"
|
|
||||||
#include "ncm_read_only_content_storage_impl.hpp"
|
#include "ncm_read_only_content_storage_impl.hpp"
|
||||||
|
#include "ncm_fs_utils.hpp"
|
||||||
|
|
||||||
namespace ams::ncm {
|
namespace ams::ncm {
|
||||||
|
|
@ -13,9 +13,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <switch.h>
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_content_storage_impl_base.hpp"
|
#include "ncm_content_storage_impl_base.hpp"
|
||||||
|
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
#include "ncm_remote_content_storage_impl.hpp"
|
#include "ncm_remote_content_storage_impl.hpp"
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
|
@ -15,8 +15,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stratosphere.hpp>
|
#include <stratosphere.hpp>
|
||||||
#include <stratosphere/lr/lr_location_resolver_manager_impl.hpp>
|
|
||||||
#include "ncm_content_manager_impl.hpp"
|
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
extern u32 __start__;
|
extern u32 __start__;
|
||||||
|
Loading…
Reference in New Issue
Block a user