Skip to content

Commit 8789f9c

Browse files
author
YuZhouRen86
committed
1.1.3.2026 Update
1 parent a9aa494 commit 8789f9c

File tree

17 files changed

+74
-7
lines changed

17 files changed

+74
-7
lines changed

00-Common Headers/vautogen.h

0 Bytes
Binary file not shown.

00-Documentation/Changelog.txt

396 Bytes
Binary file not shown.

01-Development Utilities/vautogen/vautogen.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ HeaderFile=..\..\00-Common Headers\vautogen.h
33
MajorVersion=1
44
MinorVersion=1
55
PatchLevel=3
6-
BuildNumber=1982
6+
BuildNumber=2026

01-Extended DLLs/KxBase/forwards.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@
12571257
#pragma comment(linker, "/EXPORT:VerifyScripts=kernel32.VerifyScripts")
12581258
#pragma comment(linker, "/EXPORT:VerifyVersionInfoA=kernel32.VerifyVersionInfoA")
12591259
//#pragma comment(linker, "/EXPORT:VerifyVersionInfoW=kernel32.VerifyVersionInfoW")
1260-
#pragma comment(linker, "/EXPORT:VirtualAlloc=kernel32.VirtualAlloc")
1260+
//#pragma comment(linker, "/EXPORT:VirtualAlloc=kernel32.VirtualAlloc")
12611261
#pragma comment(linker, "/EXPORT:VirtualAllocEx=kernel32.VirtualAllocEx")
12621262
#pragma comment(linker, "/EXPORT:VirtualAllocExNuma=kernel32.VirtualAllocExNuma")
12631263
#pragma comment(linker, "/EXPORT:VirtualFree=kernel32.VirtualFree")

01-Extended DLLs/KxBase/kxbase.def

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ EXPORTS
109109
UnmapViewOfFileEx
110110
MapViewOfFile3
111111
MapViewOfFile3FromApp
112+
VirtualAlloc = Ext_VirtualAlloc
112113

113114
;; KexPathCch
114115
PathAllocCanonicalize

01-Extended DLLs/KxBase/vmem.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,4 +450,14 @@ KXBASEAPI PVOID WINAPI MapViewOfFile3FromApp(
450450
PageProtection,
451451
ExtendedParameters,
452452
ParameterCount);
453+
}
454+
455+
KXBASEAPI LPVOID WINAPI Ext_VirtualAlloc(
456+
IN LPVOID Address OPTIONAL,
457+
IN SIZE_T Size,
458+
IN DWORD AllocationType,
459+
IN DWORD Protect)
460+
{
461+
if (OriginalMajorVersion < 10) Protect &= ~0x40000000;
462+
return VirtualAlloc(Address, Size, AllocationType, Protect);
453463
}

02-Prebuilt DLLs/x64/icu.dll

2.16 MB
Binary file not shown.

02-Prebuilt DLLs/x64/icuin.dll

24.5 KB
Binary file not shown.

02-Prebuilt DLLs/x64/icuuc.dll

29 KB
Binary file not shown.

02-Prebuilt DLLs/x64/msvcp_win.dll

621 KB
Binary file not shown.

0 commit comments

Comments
 (0)