Skip to content

Commit 819aefc

Browse files
committed
Version 5.8.26
1 parent 253cdc6 commit 819aefc

File tree

24 files changed

+26
-24
lines changed

24 files changed

+26
-24
lines changed

includes/leechcore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// (c) Ulf Frisk, 2020-2024
1515
// Author: Ulf Frisk, [email protected]
1616
//
17-
// Header Version: 2.16.1
17+
// Header Version: 2.17
1818
//
1919

2020
#ifndef __LEECHCORE_H__

includes/lib32/leechcore.lib

0 Bytes
Binary file not shown.

includes/lib32/vmm.lib

0 Bytes
Binary file not shown.

includes/lib64/leechcore.lib

0 Bytes
Binary file not shown.

includes/lib64/vmm.lib

0 Bytes
Binary file not shown.

includes/libarm64/leechcore.lib

0 Bytes
Binary file not shown.

includes/libarm64/vmm.lib

0 Bytes
Binary file not shown.

m_vmemd/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#define VERSION_MAJOR 5
55
#define VERSION_MINOR 8
6-
#define VERSION_REVISION 25
7-
#define VERSION_BUILD 145
6+
#define VERSION_REVISION 26
7+
#define VERSION_BUILD 146
88

99
#define VER_FILE_DESCRIPTION_STR "MemProcFS : Plugin vmemd"
1010
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD

memprocfs/ob/ob.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ PVOID Ob_AllocEx(_In_opt_ VMM_HANDLE H, _In_ DWORD tag, _In_ UINT uFlags, _In_ S
9999
* -- pfnRef_1 = optional callback for when object reach refcount = 1 at DECREF.
100100
* -- return = allocated object on success, with refcount = 1, - NULL on fail.
101101
*/
102-
inline PVOID Ob_Alloc(_In_ DWORD tag, _In_ UINT uFlags, _In_ SIZE_T uBytes, _In_opt_ OB_CLEANUP_CB pfnRef_0, _In_opt_ OB_CLEANUP_CB pfnRef_1)
102+
__forceinline PVOID Ob_Alloc(_In_ DWORD tag, _In_ UINT uFlags, _In_ SIZE_T uBytes, _In_opt_ OB_CLEANUP_CB pfnRef_0, _In_opt_ OB_CLEANUP_CB pfnRef_1)
103103
{
104104
return Ob_AllocEx(NULL, tag, uFlags, uBytes, pfnRef_0, pfnRef_1);
105105
}

memprocfs/oscompatibility.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ typedef struct tdSID { BYTE pb[12]; } SID, *PSID;
5555
typedef DWORD(*PTHREAD_START_ROUTINE)(PVOID);
5656
typedef DWORD(*LPTHREAD_START_ROUTINE)(PVOID);
5757
typedef int(*_CoreCrtNonSecureSearchSortCompareFunction)(void const *, void const *);
58+
#define __forceinline inline __attribute__((always_inline))
5859
#define errno_t int
5960
#define CONST const
6061
#define TRUE 1

0 commit comments

Comments
 (0)