diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-09 11:38:39 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-09 11:38:39 +0200 |
| commit | e55f246042a12955200e20abe406b26ab02b94fa (patch) | |
| tree | b3920c415b47587a9fef14b29781f7af9a6c1ba4 /dev/launch/LaunchKit/LaunchKit.h | |
| parent | d3f87b1b84d355ad72366ced5d7e5a43207226c0 (diff) | |
feat: launch: Working on LaunchKit's implementation.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/launch/LaunchKit/LaunchKit.h')
| -rw-r--r-- | dev/launch/LaunchKit/LaunchKit.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dev/launch/LaunchKit/LaunchKit.h b/dev/launch/LaunchKit/LaunchKit.h index 95d91e09..1a134e8f 100644 --- a/dev/launch/LaunchKit/LaunchKit.h +++ b/dev/launch/LaunchKit/LaunchKit.h @@ -7,3 +7,12 @@ #pragma once #include <libSystem/SystemKit/System.h> + +/// @author Amlal El Mahrouss +/// @brief NeKernel Launch Kit. + +#define NELAUNCH_INFO(MSG) PrintOut(nullptr, "INFO: [LAUNCH] %s\n", MSG) +#define NELAUNCH_WARN(MSG) PrintOut(nullptr, "WARN: [LAUNCH] %s\n", MSG) + +using LaunchHandle = VoidPtr; +using KernelStatus = SInt32; |
