reactos/dll/win32/kernel32/client
Timo Kreuzer 094a90ad4e [NTOS:PS] Fix an issue with PROCESS_DEVICEMAP_INFORMATION size on 64 bit builds
The PROCESS_DEVICEMAP_INFORMATION  union has 2 fields, one is a handle, the other one is a structure of 36 bytes (independent of architecture). The handle forces 64 bit alignment on 64 bit builds, making the structure 4 bytes bigger than on 32 bit builds. The site is checked in NtQueryInformationProcess (case ProcessDeviceMap). The expected size on x64 is the size of the Query structure without alignment. autocheck correctly passes the site of the Query union member, while smss passes the full size of PROCESS_DEVICEMAP_INFORMATION. Packing the structure is not an option, since it is defined in public headers without packing. Using the original headers sizeof(PROCESS_DEVICEMAP_INFORMATION) is 0x28, sizeof(PROCESS_DEVICEMAP_INFORMATION::Query) is 0x24.
2018-08-17 22:08:37 +02:00
..
amd64
arm
console
file [NTOS:PS] Fix an issue with PROCESS_DEVICEMAP_INFORMATION size on 64 bit builds 2018-08-17 22:08:37 +02:00
i386
actctx.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
appcache.c
atom.c
compname.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
debugger.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
dllmain.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
dosdev.c
environ.c
except.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
fiber.c
handle.c
heapmem.c
job.c
loader.c [RTL][KERNEL32] Add a comment indicating we need SEH in RtlImageNtHeaderEx 2018-08-13 13:24:12 +02:00
path.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
perfcnt.c
power.c
proc.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
resntfy.c
session.c
synch.c
sysinfo.c [KERNEL32] Implement System Firmware functions 2018-08-02 21:15:28 +02:00
thread.c [DLLS] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
time.c
timerqueue.c
toolhelp.c
utils.c
vdm.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
version.c
virtmem.c [KERNEL32] Fix 64 bit issues 2018-08-04 19:19:34 +02:00
vista.c