blob: 8c302c6dcf700328b4eadb4014decb0717235167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}
|