diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-18 12:22:39 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-18 12:22:39 +0100 |
| commit | 36ec3e50aa1328bed5f3d2cfbf6a0596caa7a7c5 (patch) | |
| tree | 002560ad8d68d19b9b25a799e718904d4f02e0c6 /dev/Usr | |
| parent | 6a9ae8360b9c7757b756be6cc41c77982344b0c6 (diff) | |
ADD: File to install system calls and Symbols header file.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Usr')
| -rw-r--r-- | dev/Usr/LibWM/Core.h | 8 | ||||
| -rw-r--r-- | dev/Usr/LibWM/Symbols.h | 13 |
2 files changed, 17 insertions, 4 deletions
diff --git a/dev/Usr/LibWM/Core.h b/dev/Usr/LibWM/Core.h index ad9fd444..1f2287ec 100644 --- a/dev/Usr/LibWM/Core.h +++ b/dev/Usr/LibWM/Core.h @@ -11,8 +11,8 @@ namespace LibCF { - class CFWindowContainer; - class CFWindowFrame; - class CFWindowTab; - class CFDesktopMenu; + class CFWindowContainer_; + class CFWindowFrame_; + class CFWindowTab_; + class CFDesktopMenu_; } // namespace LibCF
\ No newline at end of file diff --git a/dev/Usr/LibWM/Symbols.h b/dev/Usr/LibWM/Symbols.h new file mode 100644 index 00000000..842b2bfb --- /dev/null +++ b/dev/Usr/LibWM/Symbols.h @@ -0,0 +1,13 @@ +/* ------------------------------------------- + + Copyright (C) 2025, Amlal EL Mahrouss, all rights reserved. + +------------------------------------------- */ + +#pragma once + +#include <LibCF/Core.h> + +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 |
