diff options
Diffstat (limited to 'dev/launch')
| -rw-r--r-- | dev/launch/LaunchKit/LaunchKit.h | 9 | ||||
| -rw-r--r-- | dev/launch/src/LaunchSrv.cc | 15 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev/launch/LaunchKit/LaunchKit.h b/dev/launch/LaunchKit/LaunchKit.h new file mode 100644 index 00000000..95d91e09 --- /dev/null +++ b/dev/launch/LaunchKit/LaunchKit.h @@ -0,0 +1,9 @@ +/* ------------------------------------------- + + Copyright (C) 2025, Amlal El Mahrouss, all rights reserved. + + ------------------------------------------- */ + +#pragma once + +#include <libSystem/SystemKit/System.h> diff --git a/dev/launch/src/LaunchSrv.cc b/dev/launch/src/LaunchSrv.cc new file mode 100644 index 00000000..8c302c6d --- /dev/null +++ b/dev/launch/src/LaunchSrv.cc @@ -0,0 +1,15 @@ +/* ------------------------------------------- + + Copyright (C) 2025, Amlal El Mahrouss, all rights reserved. + + ------------------------------------------- */ + +#include <LaunchKit/LaunchKit.h> + +SInt32 _NeMain(Void) { + PrintOut(nullptr, "%s", "NeKernel Launcher\n"); + + /// @todo Start LaunchServices.fwrk, make the launcher manageable too (via mgmt.launch) + + return kErrorSuccess; +} |
