diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-04 05:20:58 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-04 05:20:58 +0100 |
| commit | d62341f615974257eac4125ab68be519efcf0a6e (patch) | |
| tree | a68661ff4108eb294e06c16319b8f938e3b2ff3a /public/tools/make_app/src/CommandLine.cc | |
| parent | fe61c5e33bd2a739885f3f7edc3c0c0798f918c7 (diff) | |
CHORE&FEAT: Kernel/SCI: Lots of Chore and feat, see below.
- Add traits for CmdListEntry in GPU's SCI. (GPU.h)
- Set standard user directory as /user/ instead of /usr/. (User.cc/User.h)
- Replace fSourcePid with fPID. (HardwareThreadScheduler.cc/HardwareThreadScheduler.h)
Diffstat (limited to 'public/tools/make_app/src/CommandLine.cc')
| -rw-r--r-- | public/tools/make_app/src/CommandLine.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/public/tools/make_app/src/CommandLine.cc b/public/tools/make_app/src/CommandLine.cc index 1858303b..bf435962 100644 --- a/public/tools/make_app/src/CommandLine.cc +++ b/public/tools/make_app/src/CommandLine.cc @@ -21,17 +21,17 @@ int main(int argc, char* argv[]) { if (MmStrCmp(argv[i], "-h") == 0) { - MsgAlloc(kAlertMsg); + MsgAlloc(kWarnMsg); - MsgSend(kAlertMsg, "%s", "make_app: Framework/Application Creation Tool.\n"); - MsgSend(kAlertMsg, "%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(kAlertMsg, "%s", "make_app: -a: Application format.\n"); - MsgSend(kAlertMsg, "%s", "make_app: -s: Steps (Setup pages) format.\n"); - MsgSend(kAlertMsg, "%s", "make_app: -f: Framework format.\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(kAlertMsg); - MsgFree(kAlertMsg); + MsgShow(kWarnMsg); + MsgFree(kWarnMsg); return EXIT_SUCCESS; } |
