2019-07-17 20:04:00 -07: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 00:12:47 -07:00
|
|
|
/* Pulls in util, svc. */
|
|
|
|
#include "atmosphere/common.hpp"
|
2019-07-17 20:04:00 -07:00
|
|
|
|
2019-10-25 00:12:47 -07:00
|
|
|
/* Critical modules with no dependencies. */
|
2019-09-30 02:52:32 -07:00
|
|
|
#include "stratosphere/ams.hpp"
|
2019-09-24 03:15:36 -07:00
|
|
|
#include "stratosphere/os.hpp"
|
2019-10-19 17:42:53 -07:00
|
|
|
#include "stratosphere/dd.hpp"
|
2019-10-25 00:12:47 -07:00
|
|
|
|
2019-10-27 21:43:01 -07:00
|
|
|
/* Lots of things depend on NCM, for Program IDs. */
|
2019-10-25 00:12:47 -07:00
|
|
|
#include "stratosphere/ncm.hpp"
|
|
|
|
|
|
|
|
/* At this point, just include the rest alphabetically. */
|
|
|
|
/* TODO: Figure out optimal order. */
|
|
|
|
#include "stratosphere/boot2.hpp"
|
2019-07-17 20:04:00 -07:00
|
|
|
#include "stratosphere/cfg.hpp"
|
2019-10-25 00:12:47 -07:00
|
|
|
#include "stratosphere/dmnt.hpp"
|
2019-07-18 19:09:35 -07:00
|
|
|
#include "stratosphere/fatal.hpp"
|
2019-07-17 20:04:00 -07:00
|
|
|
#include "stratosphere/hid.hpp"
|
2019-10-25 00:12:47 -07:00
|
|
|
#include "stratosphere/hos.hpp"
|
|
|
|
#include "stratosphere/kvdb.hpp"
|
|
|
|
#include "stratosphere/ldr.hpp"
|
|
|
|
#include "stratosphere/map.hpp"
|
|
|
|
#include "stratosphere/patcher.hpp"
|
2019-07-17 20:04:00 -07:00
|
|
|
#include "stratosphere/pm.hpp"
|
2019-10-25 00:12:47 -07:00
|
|
|
#include "stratosphere/reg.hpp"
|
2019-07-17 20:04:00 -07:00
|
|
|
#include "stratosphere/rnd.hpp"
|
2019-10-25 00:12:47 -07:00
|
|
|
#include "stratosphere/ro.hpp"
|
2019-11-21 19:32:41 -08:00
|
|
|
#include "stratosphere/settings.hpp"
|
2019-10-10 23:49:28 -07:00
|
|
|
#include "stratosphere/sf.hpp"
|
2019-10-25 00:12:47 -07:00
|
|
|
#include "stratosphere/sm.hpp"
|
|
|
|
#include "stratosphere/spl.hpp"
|
|
|
|
#include "stratosphere/updater.hpp"
|
2019-11-28 01:28:20 -08:00
|
|
|
|
|
|
|
/* Include FS last. */
|
|
|
|
#include "stratosphere/fs.hpp"
|
2019-12-05 23:41:33 -08:00
|
|
|
#include "stratosphere/fssrv.hpp"
|
|
|
|
#include "stratosphere/fssystem.hpp"
|