2019-12-09 11:57:37 +00:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-12-09 11:57:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/* libvapours (pulls in util, svc, results). */
|
|
|
|
#include <vapours.hpp>
|
|
|
|
|
2020-04-17 09:06:07 +01:00
|
|
|
/* Libstratosphere definitions. */
|
|
|
|
#include <stratosphere/ams/impl/ams_system_thread_definitions.hpp>
|
|
|
|
|
2019-12-09 11:57:37 +00:00
|
|
|
/* Libstratosphere-only utility. */
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/util.hpp>
|
2019-12-09 11:57:37 +00:00
|
|
|
|
2020-03-29 22:43:16 +01:00
|
|
|
/* Sadly required shims. */
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/svc/svc_stratosphere_shims.hpp>
|
2020-03-29 22:43:16 +01:00
|
|
|
|
2019-12-09 11:57:37 +00:00
|
|
|
/* Critical modules with no dependencies. */
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/ams.hpp>
|
|
|
|
#include <stratosphere/os.hpp>
|
|
|
|
#include <stratosphere/dd.hpp>
|
|
|
|
#include <stratosphere/lmem.hpp>
|
|
|
|
#include <stratosphere/mem.hpp>
|
2019-12-09 11:57:37 +00:00
|
|
|
|
2020-03-08 08:06:23 +00:00
|
|
|
/* Pull in all ID definitions from NCM. */
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/ncm/ncm_ids.hpp>
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
/* At this point, just include the rest alphabetically. */
|
|
|
|
/* TODO: Figure out optimal order. */
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/boot2.hpp>
|
2020-04-20 12:37:08 +01:00
|
|
|
#include <stratosphere/capsrv.hpp>
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/cfg.hpp>
|
|
|
|
#include <stratosphere/dmnt.hpp>
|
|
|
|
#include <stratosphere/erpt.hpp>
|
|
|
|
#include <stratosphere/fatal.hpp>
|
|
|
|
#include <stratosphere/hid.hpp>
|
|
|
|
#include <stratosphere/hos.hpp>
|
|
|
|
#include <stratosphere/kvdb.hpp>
|
|
|
|
#include <stratosphere/ldr.hpp>
|
|
|
|
#include <stratosphere/lr.hpp>
|
|
|
|
#include <stratosphere/map.hpp>
|
|
|
|
#include <stratosphere/ncm.hpp>
|
|
|
|
#include <stratosphere/nim.hpp>
|
|
|
|
#include <stratosphere/patcher.hpp>
|
2020-04-16 01:37:11 +01:00
|
|
|
#include <stratosphere/pgl.hpp>
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/psc.hpp>
|
|
|
|
#include <stratosphere/pm.hpp>
|
|
|
|
#include <stratosphere/reg.hpp>
|
|
|
|
#include <stratosphere/ro.hpp>
|
|
|
|
#include <stratosphere/settings.hpp>
|
|
|
|
#include <stratosphere/sf.hpp>
|
|
|
|
#include <stratosphere/sm.hpp>
|
|
|
|
#include <stratosphere/spl.hpp>
|
|
|
|
#include <stratosphere/time.hpp>
|
|
|
|
#include <stratosphere/updater.hpp>
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
/* Include FS last. */
|
2020-04-14 01:07:37 +01:00
|
|
|
#include <stratosphere/fs.hpp>
|
|
|
|
#include <stratosphere/fssrv.hpp>
|
|
|
|
#include <stratosphere/fssystem.hpp>
|