2019-07-18 04:04:00 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2019-10-25 08:12:47 +01:00
|
|
|
/* Pulls in util, svc. */
|
|
|
|
#include "atmosphere/common.hpp"
|
2019-07-18 04:04:00 +01:00
|
|
|
|
2019-10-25 08:12:47 +01:00
|
|
|
/* Critical modules with no dependencies. */
|
2019-09-30 10:52:32 +01:00
|
|
|
#include "stratosphere/ams.hpp"
|
2019-09-24 11:15:36 +01:00
|
|
|
#include "stratosphere/os.hpp"
|
2019-10-20 01:42:53 +01:00
|
|
|
#include "stratosphere/dd.hpp"
|
2019-10-25 08:12:47 +01:00
|
|
|
|
|
|
|
/* Lots of things depend on NCM, for Title IDs. */
|
|
|
|
#include "stratosphere/ncm.hpp"
|
|
|
|
|
|
|
|
/* At this point, just include the rest alphabetically. */
|
|
|
|
/* TODO: Figure out optimal order. */
|
|
|
|
#include "stratosphere/boot2.hpp"
|
2019-07-18 04:04:00 +01:00
|
|
|
#include "stratosphere/cfg.hpp"
|
2019-10-25 08:12:47 +01:00
|
|
|
#include "stratosphere/dmnt.hpp"
|
2019-07-19 03:09:35 +01:00
|
|
|
#include "stratosphere/fatal.hpp"
|
2019-07-18 04:04:00 +01:00
|
|
|
#include "stratosphere/hid.hpp"
|
2019-10-25 08:12:47 +01:00
|
|
|
#include "stratosphere/hos.hpp"
|
|
|
|
#include "stratosphere/kvdb.hpp"
|
|
|
|
#include "stratosphere/ldr.hpp"
|
|
|
|
#include "stratosphere/map.hpp"
|
|
|
|
#include "stratosphere/patcher.hpp"
|
2019-07-18 04:04:00 +01:00
|
|
|
#include "stratosphere/pm.hpp"
|
2019-10-25 08:12:47 +01:00
|
|
|
#include "stratosphere/reg.hpp"
|
2019-07-18 04:04:00 +01:00
|
|
|
#include "stratosphere/rnd.hpp"
|
2019-10-25 08:12:47 +01:00
|
|
|
#include "stratosphere/ro.hpp"
|
2019-10-11 07:49:28 +01:00
|
|
|
#include "stratosphere/sf.hpp"
|
2019-10-25 08:12:47 +01:00
|
|
|
#include "stratosphere/sm.hpp"
|
|
|
|
#include "stratosphere/spl.hpp"
|
|
|
|
#include "stratosphere/updater.hpp"
|