diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2024-08-07 15:26:37 +0000 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2024-08-07 15:26:37 +0000 |
| commit | c2f59f90cfcf3a6a43eed74a6bbe1a73e240a616 (patch) | |
| tree | 217691092f37c1b96823a55039a06c73e07e988f | |
| parent | bf63a6eeec618d4d3240943e54e8e4ce9f564405 (diff) | |
SCIBase.hxx: new revision of header with fixes.
| -rw-r--r-- | SCIKit/SCIBase.hxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/SCIKit/SCIBase.hxx b/SCIKit/SCIBase.hxx index 6e389390..b084a17b 100644 --- a/SCIKit/SCIBase.hxx +++ b/SCIKit/SCIBase.hxx @@ -2,8 +2,8 @@ Copyright ZKA Technologies.
-File: Types.hxx.
-Purpose: System Call types.
+File: SCIBase.hxx
+Purpose: SCIKit foundation header.
------------------------------------------- */
@@ -128,8 +128,10 @@ struct PROCESS_EXIT_INFO final /// @param data the data associated with it.
/// @param data_sz the size of the data associated with it.
/// @return status code.
-IMPORT_C SInt32 RtlRaiseSystemCall(const SInt32 id, VoidPtr data, SizeT data_sz);
+IMPORT_C SInt32 RtlRaiseSysCall(const SInt32 id, VoidPtr data, SizeT data_sz);
-IMPORT_C VoidPtr RtlGetDLLProcedure(const char* symbol, VoidPtr dll_handle);
-IMPORT_C VoidPtr RtOpenDLL(const char* path);
-IMPORT_C void RtCloseDLL(VoidPtr dll_handle);
\ No newline at end of file +/// @note Part of NK loader API.
+
+IMPORT_C VoidPtr RtlGetDLLProc(const char* symbol, VoidPtr dll_handle);
+IMPORT_C VoidPtr RtlOpenDLL(const char* path);
+IMPORT_C UInt0 RtlCloseDLL(VoidPtr dll_handle);
\ No newline at end of file |
