diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-03 05:46:44 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-03 05:46:44 +0100 |
| commit | 6249f2078e0c024dc2cd52436ba11baf6f70bc2a (patch) | |
| tree | 0272dd3ecf200819e2838a4be5e2bf0c28cfd557 /dev/Usr/LibWM | |
| parent | 31698c31a8a48f77a64e97baa5297633b18221e5 (diff) | |
ADD: AHCI: New AHCI Driver API, and refactor AHCIDeviceInterface class
from SK.
NEXT: System Call Table for Kernel to User interaction.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Usr/LibWM')
| -rw-r--r-- | dev/Usr/LibWM/Symbols.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev/Usr/LibWM/Symbols.h b/dev/Usr/LibWM/Symbols.h index 842b2bfb..4003fd5d 100644 --- a/dev/Usr/LibWM/Symbols.h +++ b/dev/Usr/LibWM/Symbols.h @@ -8,6 +8,11 @@ #include <LibCF/Core.h> +struct __wm_msg; + IMPORT_C SInt32 __wm_alert(const char* title, const char* msg, const char* opt_link); IMPORT_C SInt32 __wm_prompt(const char* title, const char* msg, const char** input, const SizeT input_len); -IMPORT_C SInt32 __wm_exec(const char* path);
\ No newline at end of file + +IMPORT_C SInt32 __wm_exec(const char* path); + +IMPORT_C SInt32 __wm_dispatch_msg(const void* msg, const SizeT len);
\ No newline at end of file |
