diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-21 08:29:52 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-21 08:29:52 +0100 |
| commit | 1517ad3c9d8ee73086365763edd1f3b4d935074d (patch) | |
| tree | 5da121158e77af795a32f556b0401047cf9718a1 /dev/LibSCI/SCI.h | |
| parent | 00f4fd8e3ae003d458ea0b6ae47b9ba3c9067bcf (diff) | |
Moved FB API to GPU.h Add Format, Message and Filesystem API.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibSCI/SCI.h')
| -rw-r--r-- | dev/LibSCI/SCI.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev/LibSCI/SCI.h b/dev/LibSCI/SCI.h index 3b03bee2..a7d449d4 100644 --- a/dev/LibSCI/SCI.h +++ b/dev/LibSCI/SCI.h @@ -318,17 +318,9 @@ IMPORT_C SInt32 SchedKill(PID, SInt32 req); IMPORT_C SInt32 SchedBreakPoint(Void);
// ------------------------------------------------------------------------------------------ //
-// @brief Video API.
+// @brief Filesystem API.
// ------------------------------------------------------------------------------------------ //
-IMPORT_C SInt32 VideoGetBuffer(VoidPtr* out);
-
-IMPORT_C SInt32 VideoDisposeBuffer(VoidPtr* in);
-
-IMPORT_C SInt32 VideoGetColorProfile(VoidPtr* in);
-
-IMPORT_C SInt32 VideoQueryInfo(VoidPtr* info_ptr, SizeT* info_sz);
-
IMPORT_C BOOL FsCopy(const char* path, const char* dst);
IMPORT_C BOOL FsMove(const char* path, const char* dst);
@@ -338,8 +330,16 @@ IMPORT_C BOOL FsCreateDir(const char* path); IMPORT_C BOOL FsCreateFile(const char* path);
IMPORT_C BOOL FsCreateAlias(const char* path, const char* from);
+// ------------------------------------------------------------------------------------------ //
+// @brief Format API.
+// ------------------------------------------------------------------------------------------ //
+
IMPORT_C Char* StrFmt(const Char* fmt, ...);
+// ------------------------------------------------------------------------------------------ //
+// @brief Message API.
+// ------------------------------------------------------------------------------------------ //
+
IMPORT_C SInt32 MsgFree(VoidPtr handle);
IMPORT_C SInt32 MsgShow(VoidPtr handle);
|
