2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 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/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-22 03:31:06 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-30 00:25:36 +00:00
|
|
|
#include "stratosphere/version_check.hpp"
|
|
|
|
#include "stratosphere/scope_guard.hpp"
|
2018-06-12 23:00:09 +01:00
|
|
|
|
2018-10-30 00:25:36 +00:00
|
|
|
#include "stratosphere/hossynch.hpp"
|
2018-11-04 05:05:42 +00:00
|
|
|
#include "stratosphere/message_queue.hpp"
|
2018-04-22 03:31:06 +01:00
|
|
|
#include "stratosphere/iwaitable.hpp"
|
2018-10-30 00:25:36 +00:00
|
|
|
#include "stratosphere/event.hpp"
|
2018-05-03 23:15:00 +01:00
|
|
|
|
2018-10-30 00:25:36 +00:00
|
|
|
#include "stratosphere/waitable_manager.hpp"
|
|
|
|
|
|
|
|
#include "stratosphere/ipc.hpp"
|
2018-05-03 23:15:00 +01:00
|
|
|
|
2018-10-30 00:25:36 +00:00
|
|
|
#include "stratosphere/mitm.hpp"
|
2018-10-17 01:54:50 +01:00
|
|
|
|
2018-10-30 00:25:36 +00:00
|
|
|
#include "stratosphere/services.hpp"
|