diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-18 10:46:50 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-18 10:46:50 +0100 |
| commit | d1596e3df96fe03acd76bfb3df07750092fd809f (patch) | |
| tree | e7cf071b8eb6cfad9a973a4e5cf1ca5297b71263 /dev | |
| parent | ee568b7f8eb87c824fd1ce5e2099cbf9c3155ee8 (diff) | |
LibSCI: Add ConCreate and ConRelease C functions.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/LibSCI/SCI.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dev/LibSCI/SCI.h b/dev/LibSCI/SCI.h index c355243e..b0add9ef 100644 --- a/dev/LibSCI/SCI.h +++ b/dev/LibSCI/SCI.h @@ -284,6 +284,10 @@ IMPORT_C SInt32 ConOut(IOObject file /* nullptr to direct to stdout */, const Ch IMPORT_C SInt32 ConIn(IOObject file /* nullptr to direct to stdout */, const Char* fmt, ...);
+IMPORT_C IOObject ConCreate(Void);
+
+IMPORT_C SInt32 ConRelease(IOObject);
+
IMPORT_C IOObject ConGet(const Char* path);
#endif // ifndef SCIKIT_FOUNDATION_H
|
