diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-23 19:13:48 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-23 19:15:17 +0100 |
| commit | a13e1c0911c0627184bc38f18c7fdda64447b3ad (patch) | |
| tree | 073a62c09bf216e85a3f310376640fa1805147f9 /public/tools/make_app/src/CommandLine.cc | |
| parent | 149fa096eb306d03686b3b67e813cf1a78e08cd0 (diff) | |
meta(kernel): Reworked repository's filesystem structure.
Removing useless parts of the project too.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'public/tools/make_app/src/CommandLine.cc')
| -rw-r--r-- | public/tools/make_app/src/CommandLine.cc | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/public/tools/make_app/src/CommandLine.cc b/public/tools/make_app/src/CommandLine.cc index 49be4795..0cc40106 100644 --- a/public/tools/make_app/src/CommandLine.cc +++ b/public/tools/make_app/src/CommandLine.cc @@ -7,7 +7,7 @@ #include <Framework.h> #include <Steps.h> -#include <LibCF/Array.h> +#include <CoreFoundation.fwrk/headers/Array.h> /// @brief This program makes a framework directory for NeKernel OS. @@ -21,17 +21,12 @@ int main(int argc, char* argv[]) { if (MmStrCmp(argv[i], "-h") == 0) { - MsgAlloc(kWarnMsg); + PrintOut(nullptr, "%s", "make_app: Framework/Application Creation Tool.\n"); + PrintOut(nullptr, "%s", "make_app: © Amlal EL Mahrouss, All rights reserved.\n"); - MsgSend(kWarnMsg, "%s", "make_app: Framework/Application Creation Tool.\n"); - MsgSend(kWarnMsg, "%s", "make_app: © Amlal EL Mahrouss, All rights reserved.\n"); - - MsgSend(kWarnMsg, "%s", "make_app: -a: Application format.\n"); - MsgSend(kWarnMsg, "%s", "make_app: -s: Steps (Setup pages) format.\n"); - MsgSend(kWarnMsg, "%s", "make_app: -f: Framework format.\n"); - - MsgShow(kWarnMsg); - MsgFree(kWarnMsg); + PrintOut(nullptr, "%s", "make_app: -a: Application format.\n"); + PrintOut(nullptr, "%s", "make_app: -s: Steps (Setup pages) format.\n"); + PrintOut(nullptr, "%s", "make_app: -f: Framework format.\n"); return EXIT_SUCCESS; } |
