summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/application_creator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/application_creator.cpp')
-rw-r--r--src/core/hle/service/am/application_creator.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/core/hle/service/am/application_creator.cpp b/src/core/hle/service/am/application_creator.cpp
deleted file mode 100644
index 79ea045a3..000000000
--- a/src/core/hle/service/am/application_creator.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#include "core/hle/service/am/application_creator.h"
-#include "core/hle/service/ipc_helpers.h"
-
-namespace Service::AM {
-
-IApplicationCreator::IApplicationCreator(Core::System& system_)
- : ServiceFramework{system_, "IApplicationCreator"} {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, nullptr, "CreateApplication"},
- {1, nullptr, "PopLaunchRequestedApplication"},
- {10, nullptr, "CreateSystemApplication"},
- {100, nullptr, "PopFloatingApplicationForDevelopment"},
- };
- // clang-format on
-
- RegisterHandlers(functions);
-}
-
-IApplicationCreator::~IApplicationCreator() = default;
-
-} // namespace Service::AM