MissionControl/mc_mitm/source/mcmitm_initialization.hpp

26 lines
784 B
C++
Raw Normal View History

/*
2023-02-23 20:57:56 +00:00
* Copyright (c) 2020-2023 ndeadly
*
* 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
namespace ams::mitm {
2022-04-08 15:12:59 +00:00
void StartInitialize();
void WaitInitialized();
void LaunchModules();
void WaitModules();
2022-04-26 11:47:35 +00:00
}