From 96a27f7bc81c5f9d5936463310ea15966d26c7b1 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 21 Apr 2023 17:46:11 +0300 Subject: [PATCH] Update syscall doc functions --- syscalls.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/syscalls.h b/syscalls.h index 3a9a0c6f..7034aba5 100644 --- a/syscalls.h +++ b/syscalls.h @@ -85,25 +85,25 @@ enum NativeSyscalls _IPC, /** @brief Open a file - * @fn + * @fn void *FileOpen(const char *Path, uint64_t Flags) * This syscall is used to open a file with the provided path and flags. */ _FileOpen, /** @brief Close a file - * @fn + * @fn int FileClose(void *KernelPrivate) * This syscall is used to close a file that was previously opened. */ _FileClose, /** @brief Read from a file - * @fn + * @fn uint64_t FileRead(void *KernelPrivate, uint64_t Offset, uint8_t *Buffer, uint64_t Size) * This syscall is used to read a specific number of bytes from a file at a specific offset. */ _FileRead, /** @brief Write to a file - * @fn + * @fn uint64_t FileWrite(void *KernelPrivate, uint64_t Offset, uint8_t *Buffer, uint64_t Size) * This syscall is used to write a specific number of bytes to a file at a specific offset. */ _FileWrite,