summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/KeMain.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-07-05 23:50:39 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-07-05 23:59:00 +0200
commita671de4f336e7e9d67a7e237e0f94ccd334230ee (patch)
treef59964b90c6096369d8c45662fef003af210be7d /Kernel/Sources/KeMain.cxx
parentc521b6d8defc0ee9f0b35df9da0dfa072978a1f4 (diff)
IMP: Replace __FSKIT_NEWFS__ with __FSKIT_USE_NEWFS__.
IMP: Restrict support in FileManager's FileStream class. IMP: WiP: RLE implementation like in CoreAV. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Kernel/Sources/KeMain.cxx')
-rw-r--r--Kernel/Sources/KeMain.cxx17
1 files changed, 3 insertions, 14 deletions
diff --git a/Kernel/Sources/KeMain.cxx b/Kernel/Sources/KeMain.cxx
index a4b087c3..099ade0c 100644
--- a/Kernel/Sources/KeMain.cxx
+++ b/Kernel/Sources/KeMain.cxx
@@ -187,25 +187,14 @@ namespace Kernel::Detail
STATIC Kernel::Void ke_launch_srv(Kernel::Void)
{
// load security server.
- Kernel::PEFLoader launchDevil("C:\\System\\launchd");
+ Kernel::PEFLoader simConn("C:\\System\\SimConnect");
- if (!launchDevil.IsLoaded())
+ if (!simConn.IsLoaded())
{
Kernel::ke_stop(RUNTIME_CHECK_FAILED);
}
- Kernel::Utils::execute_from_image(launchDevil,
- Kernel::ProcessHeader::kAppKind);
-
- /// load middleware service.
- Kernel::PEFLoader stageBoard("C:\\System\\stageboard");
-
- if (!stageBoard.IsLoaded())
- {
- Kernel::ke_stop(RUNTIME_CHECK_FAILED);
- }
-
- Kernel::Utils::execute_from_image(stageBoard,
+ Kernel::Utils::execute_from_image(simConn,
Kernel::ProcessHeader::kAppKind);
}
} // namespace Kernel::Detail