diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-24 03:02:43 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-24 03:02:43 +0100 |
| commit | 83d870e58457a1d335a1d9b9966a6a1887cc297b (patch) | |
| tree | 72888f88c7728c82f3f6df1f4f70591de15eab36 /dev/libMsg | |
| parent | ab37adbacf0f33845804c788b39680cd754752a8 (diff) | |
feat! breaking changes on kernel sources.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/libMsg')
| -rw-r--r-- | dev/libMsg/.keep | 0 | ||||
| -rw-r--r-- | dev/libMsg/MsgKit/Network.h | 9 | ||||
| -rw-r--r-- | dev/libMsg/MsgKit/Server.h | 41 | ||||
| -rw-r--r-- | dev/libMsg/obj/.keep | 0 | ||||
| -rw-r--r-- | dev/libMsg/script/window_client.json | 7 | ||||
| -rw-r--r-- | dev/libMsg/src/.keep | 0 |
6 files changed, 0 insertions, 57 deletions
diff --git a/dev/libMsg/.keep b/dev/libMsg/.keep deleted file mode 100644 index e69de29b..00000000 --- a/dev/libMsg/.keep +++ /dev/null diff --git a/dev/libMsg/MsgKit/Network.h b/dev/libMsg/MsgKit/Network.h deleted file mode 100644 index ca7cf2d3..00000000 --- a/dev/libMsg/MsgKit/Network.h +++ /dev/null @@ -1,9 +0,0 @@ -/* ======================================== - - Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ - -#pragma once - -#include <libMsg/MsgKit/Server.h>
\ No newline at end of file diff --git a/dev/libMsg/MsgKit/Server.h b/dev/libMsg/MsgKit/Server.h deleted file mode 100644 index b75fb96a..00000000 --- a/dev/libMsg/MsgKit/Server.h +++ /dev/null @@ -1,41 +0,0 @@ -/* ======================================== - - Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ - -#pragma once - -#ifdef __cplusplus -#include <public/frameworks/CoreFoundation.fwrk/headers/String.h> -#else -#include <libSystem/SystemKit/System.h> -#endif - -/// @author Amlal El Mahrouss -/// @file Server.h -/// @brief libMsg LISP system. - -struct LIBMSG_EXPR; - -/// @brief an expression chain of LibMSG. -struct LIBMSG_EXPR final { -#ifdef __cplusplus - CF::CFString* l_key{nullptr}; - CF::CFString* l_value{nullptr}; -#else - // if we use C, we won't know about CF, so let's make those private. - VoidPtr l_private_data[2]{nullptr}; -#endif - - LIBMSG_EXPR* l_head{nullptr}; - LIBMSG_EXPR* l_tail{nullptr}; - LIBMSG_EXPR* l_child{nullptr}; -}; - -/// @brief Function type for LibMSG lisp. -typedef Void (*libmsg_func_type)(struct LIBMSG_EXPR* self, VoidPtr arg, SizeT arg_size); - -IMPORT_C Void libmsg_init_library(libmsg_func_type* funcs, SizeT cnt); -IMPORT_C UInt32 libmsg_close_library(Void); -IMPORT_C UInt32 libmsg_eval_expr(struct LIBMSG_EXPR* head); diff --git a/dev/libMsg/obj/.keep b/dev/libMsg/obj/.keep deleted file mode 100644 index e69de29b..00000000 --- a/dev/libMsg/obj/.keep +++ /dev/null diff --git a/dev/libMsg/script/window_client.json b/dev/libMsg/script/window_client.json deleted file mode 100644 index 4c8a21ba..00000000 --- a/dev/libMsg/script/window_client.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "id": 1, - "pos": { "x": 100, "y": 100 }, - "size": { "w": 300, "h": 200 }, - "title": "Window Client", - "on-click": "_OnClickCSymbol" -}
\ No newline at end of file diff --git a/dev/libMsg/src/.keep b/dev/libMsg/src/.keep deleted file mode 100644 index e69de29b..00000000 --- a/dev/libMsg/src/.keep +++ /dev/null |
