diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-17 10:52:47 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-17 10:52:47 +0100 |
| commit | 297267fa1d8b8d7afc20bff29612caf1dcdfa81b (patch) | |
| tree | b09395dcb9e010322775b69b8e62045ca5d3180f /dev/Kernel/KernelKit | |
| parent | 1af292956ba943a5b08f02f445b8a41decefd847 (diff) | |
ADD: IDylibRef instead of IDylib.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/KernelKit')
| -rw-r--r-- | dev/Kernel/KernelKit/IPEFDylibObject.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/Kernel/KernelKit/IPEFDylibObject.h b/dev/Kernel/KernelKit/IPEFDylibObject.h index d3b7a68e..1450ee89 100644 --- a/dev/Kernel/KernelKit/IPEFDylibObject.h +++ b/dev/Kernel/KernelKit/IPEFDylibObject.h @@ -97,10 +97,10 @@ namespace Kernel PEFLoader* fLoader{nullptr}; }; - typedef IPEFDylibObject* IDylib; + typedef IPEFDylibObject* IDylibRef; - EXTERN_C IDylib rtl_init_dylib(UserProcess& header); - EXTERN_C Void rtl_fini_dylib(UserProcess& header, IDylib lib, Bool* successful); + EXTERN_C IDylibRef rtl_init_dylib(UserProcess& header); + EXTERN_C Void rtl_fini_dylib(UserProcess& header, IDylibRef lib, Bool* successful); } // namespace Kernel #endif /* ifndef __KERNELKIT_SHARED_OBJECT_H__ */ |
