2021-01-26 03:02:15 +00:00
|
|
|
/*
|
2023-02-23 20:57:56 +00:00
|
|
|
* Copyright (c) 2020-2023 ndeadly
|
2021-01-26 03:02:15 +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
|
|
|
|
|
|
|
|
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
|
|
|
|
2021-01-26 03:02:15 +00:00
|
|
|
}
|