From bc97b2b790eb06d8f9adb8ef8fa41874d7d19770 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 20 Apr 2025 16:47:35 +0200 Subject: kernel, dev: python script to make an ESP from files. - Started implementing the wrt_* APIs (Wide string functions) - Make user.sys link now, need to implement more syscalls. - Tiny HEFS refactors too. Signed-off-by: Amlal El Mahrouss --- dev/user/Opts.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dev/user/Opts.h (limited to 'dev/user/Opts.h') diff --git a/dev/user/Opts.h b/dev/user/Opts.h new file mode 100644 index 00000000..09a77570 --- /dev/null +++ b/dev/user/Opts.h @@ -0,0 +1,12 @@ +/* ------------------------------------------- + + Copyright (C) 2025, Amlal El Mahrouss, all rights reserved. + +------------------------------------------- */ + +#include + +IMPORT_C VoidPtr sci_syscall_arg_1(SizeT id); +IMPORT_C VoidPtr sci_syscall_arg_2(SizeT id, VoidPtr arg1); +IMPORT_C VoidPtr sci_syscall_arg_3(SizeT id, VoidPtr arg1, VoidPtr arg3); +IMPORT_C VoidPtr sci_syscall_arg_4(SizeT id, VoidPtr arg1, VoidPtr arg3, VoidPtr arg4); -- cgit v1.2.3