mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[MOUNTMGR_APITEST] Dump offsets
That shows that some offset are shared (everything but the symlinks)
This commit is contained in:
parent
a53992180d
commit
67d3fbdd97
1 changed files with 2 additions and 0 deletions
|
@ -12,7 +12,9 @@ TraceMountPoint(PMOUNTMGR_MOUNT_POINTS MountPoints,
|
||||||
PMOUNTMGR_MOUNT_POINT MountPoint)
|
PMOUNTMGR_MOUNT_POINT MountPoint)
|
||||||
{
|
{
|
||||||
trace("MountPoint: %p\n", MountPoint);
|
trace("MountPoint: %p\n", MountPoint);
|
||||||
|
trace("\tSymbolicOffset: %ld\n", MountPoint->SymbolicLinkNameOffset);
|
||||||
trace("\tSymbolicLinkName: %.*S\n", MountPoint->SymbolicLinkNameLength / sizeof(WCHAR), (PWSTR)((ULONG_PTR)MountPoints + MountPoint->SymbolicLinkNameOffset));
|
trace("\tSymbolicLinkName: %.*S\n", MountPoint->SymbolicLinkNameLength / sizeof(WCHAR), (PWSTR)((ULONG_PTR)MountPoints + MountPoint->SymbolicLinkNameOffset));
|
||||||
|
trace("\tDeviceOffset: %ld\n", MountPoint->DeviceNameOffset);
|
||||||
trace("\tDeviceName: %.*S\n", MountPoint->DeviceNameLength / sizeof(WCHAR), (PWSTR)((ULONG_PTR)MountPoints + MountPoint->DeviceNameOffset));
|
trace("\tDeviceName: %.*S\n", MountPoint->DeviceNameLength / sizeof(WCHAR), (PWSTR)((ULONG_PTR)MountPoints + MountPoint->DeviceNameOffset));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue