diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-24 21:58:41 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-24 22:06:03 +0200 |
| commit | a1362d5f0c53ba38a164223822e0ee543acbf3ac (patch) | |
| tree | 474701d6a58f783a2bae4a4b503cf71bd8ed7c00 /Comm | |
| parent | bc5c006f4262d7c7a6e92d2d1fccad9e7a295517 (diff) | |
IMP: Kernel init macro to jump into kernel procedure.
- New NAPI power management syscalls, shutdown; reboot.
(no more is needed, handover that to hardware)
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Comm')
| -rw-r--r-- | Comm/newstd.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Comm/newstd.hxx b/Comm/newstd.hxx index 7362f8e9..8590176e 100644 --- a/Comm/newstd.hxx +++ b/Comm/newstd.hxx @@ -48,24 +48,24 @@ typedef __INT8_TYPE__ SInt8; class NUser final
{
public:
- // THOSE REQUIRES PERMISSIONS FROM THE USER. ///
+ // THOSE REQUIRES PERMISSIONS FROM THE USER. //
static UInt0 Poweroff();
static UInt0 Reboot();
static Bool IsWokeup();
- // THOSE DOESNT REQUIRE PERMISSIONS FROM THE USER. ///
+ // THOSE DOESNT REQUIRE PERMISSIONS FROM THE USER. //
static UInt0 Terminate();
static Bool Exit(OSType code);
static UInt0* New(long long sz);
static UInt0 Delete(void* ptr);
- // ASK FOR ELEVATION ///
+ // ASK FOR ELEVATION //
static Bool RaiseUAC();
- // THOSE MAY REQUIRE PERMISSIONS FROM THE USER. ///
+ // THOSE MAY REQUIRE PERMISSIONS FROM THE USER. //
static OSType Open(const char* path);
static UInt0 Close(OSType fd);
|
