mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:23:01 +00:00
[KERNEL32]: Whitespace fixes only, no functional code changes.
svn path=/trunk/; revision=71687
This commit is contained in:
parent
def1d69426
commit
5113536603
1 changed files with 181 additions and 196 deletions
|
@ -92,7 +92,7 @@ DefineDosDeviceW(
|
|||
DEV_BROADCAST_VOLUME dbcv;
|
||||
BOOL Result = TRUE;
|
||||
DWORD dwRecipients;
|
||||
typedef long (WINAPI *BSM_type)(DWORD,LPDWORD,UINT,WPARAM,LPARAM);
|
||||
typedef long (WINAPI *BSM_type)(DWORD, LPDWORD, UINT, WPARAM, LPARAM);
|
||||
BSM_type BSM_ptr;
|
||||
|
||||
if ( (dwFlags & 0xFFFFFFF0) ||
|
||||
|
@ -250,31 +250,26 @@ QueryDosDeviceA(
|
|||
|
||||
if (lpDeviceName)
|
||||
{
|
||||
if (!RtlCreateUnicodeStringFromAsciiz (&DeviceNameU,
|
||||
if (!RtlCreateUnicodeStringFromAsciiz(&DeviceNameU,
|
||||
(LPSTR)lpDeviceName))
|
||||
{
|
||||
SetLastError (ERROR_NOT_ENOUGH_MEMORY);
|
||||
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Buffer = RtlAllocateHeap (RtlGetProcessHeap (),
|
||||
0,
|
||||
ucchMax * sizeof(WCHAR));
|
||||
Buffer = RtlAllocateHeap(RtlGetProcessHeap(), 0, ucchMax * sizeof(WCHAR));
|
||||
if (Buffer == NULL)
|
||||
{
|
||||
if (lpDeviceName)
|
||||
{
|
||||
RtlFreeHeap (RtlGetProcessHeap (),
|
||||
0,
|
||||
DeviceNameU.Buffer);
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, DeviceNameU.Buffer);
|
||||
}
|
||||
SetLastError (ERROR_NOT_ENOUGH_MEMORY);
|
||||
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Length = QueryDosDeviceW (lpDeviceName ? DeviceNameU.Buffer : NULL,
|
||||
Buffer,
|
||||
ucchMax);
|
||||
Length = QueryDosDeviceW(lpDeviceName ? DeviceNameU.Buffer : NULL,
|
||||
Buffer, ucchMax);
|
||||
if (Length != 0)
|
||||
{
|
||||
TargetPathA.Buffer = lpTargetPath;
|
||||
|
@ -283,29 +278,23 @@ QueryDosDeviceA(
|
|||
|
||||
while (ucchMax)
|
||||
{
|
||||
CurrentLength = min (ucchMax, MAXUSHORT / 2);
|
||||
CurrentLength = min(ucchMax, MAXUSHORT / 2);
|
||||
TargetPathU.MaximumLength = TargetPathU.Length = (USHORT)CurrentLength * sizeof(WCHAR);
|
||||
|
||||
TargetPathA.Length = 0;
|
||||
TargetPathA.MaximumLength = (USHORT)CurrentLength;
|
||||
|
||||
RtlUnicodeStringToAnsiString (&TargetPathA,
|
||||
&TargetPathU,
|
||||
FALSE);
|
||||
RtlUnicodeStringToAnsiString(&TargetPathA, &TargetPathU, FALSE);
|
||||
ucchMax -= CurrentLength;
|
||||
TargetPathA.Buffer += TargetPathA.Length;
|
||||
TargetPathU.Buffer += TargetPathU.Length / sizeof(WCHAR);
|
||||
}
|
||||
}
|
||||
|
||||
RtlFreeHeap (RtlGetProcessHeap (),
|
||||
0,
|
||||
Buffer);
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, Buffer);
|
||||
if (lpDeviceName)
|
||||
{
|
||||
RtlFreeHeap (RtlGetProcessHeap (),
|
||||
0,
|
||||
DeviceNameU.Buffer);
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, DeviceNameU.Buffer);
|
||||
}
|
||||
return Length;
|
||||
}
|
||||
|
@ -337,20 +326,19 @@ QueryDosDeviceW(
|
|||
PWSTR Ptr;
|
||||
|
||||
/* Open the '\??' directory */
|
||||
RtlInitUnicodeString (&UnicodeString,
|
||||
L"\\??");
|
||||
InitializeObjectAttributes (&ObjectAttributes,
|
||||
RtlInitUnicodeString(&UnicodeString, L"\\??");
|
||||
InitializeObjectAttributes(&ObjectAttributes,
|
||||
&UnicodeString,
|
||||
OBJ_CASE_INSENSITIVE,
|
||||
NULL,
|
||||
NULL);
|
||||
Status = NtOpenDirectoryObject (&DirectoryHandle,
|
||||
Status = NtOpenDirectoryObject(&DirectoryHandle,
|
||||
DIRECTORY_QUERY,
|
||||
&ObjectAttributes);
|
||||
if (!NT_SUCCESS (Status))
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
WARN ("NtOpenDirectoryObject() failed (Status %lx)\n", Status);
|
||||
BaseSetLastNTError (Status);
|
||||
WARN("NtOpenDirectoryObject() failed (Status %lx)\n", Status);
|
||||
BaseSetLastNTError(Status);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -359,21 +347,20 @@ QueryDosDeviceW(
|
|||
if (lpDeviceName != NULL)
|
||||
{
|
||||
/* Open the lpDeviceName link object */
|
||||
RtlInitUnicodeString (&UnicodeString,
|
||||
(PWSTR)lpDeviceName);
|
||||
InitializeObjectAttributes (&ObjectAttributes,
|
||||
RtlInitUnicodeString(&UnicodeString, (PWSTR)lpDeviceName);
|
||||
InitializeObjectAttributes(&ObjectAttributes,
|
||||
&UnicodeString,
|
||||
OBJ_CASE_INSENSITIVE,
|
||||
DirectoryHandle,
|
||||
NULL);
|
||||
Status = NtOpenSymbolicLinkObject (&DeviceHandle,
|
||||
Status = NtOpenSymbolicLinkObject(&DeviceHandle,
|
||||
SYMBOLIC_LINK_QUERY,
|
||||
&ObjectAttributes);
|
||||
if (!NT_SUCCESS (Status))
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
WARN ("NtOpenSymbolicLinkObject() failed (Status %lx)\n", Status);
|
||||
NtClose (DirectoryHandle);
|
||||
BaseSetLastNTError (Status);
|
||||
WARN("NtOpenSymbolicLinkObject() failed (Status %lx)\n", Status);
|
||||
NtClose(DirectoryHandle);
|
||||
BaseSetLastNTError(Status);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -383,21 +370,21 @@ QueryDosDeviceW(
|
|||
UnicodeString.Buffer = lpTargetPath;
|
||||
|
||||
ReturnLength = 0;
|
||||
Status = NtQuerySymbolicLinkObject (DeviceHandle,
|
||||
Status = NtQuerySymbolicLinkObject(DeviceHandle,
|
||||
&UnicodeString,
|
||||
&ReturnLength);
|
||||
NtClose (DeviceHandle);
|
||||
NtClose (DirectoryHandle);
|
||||
if (!NT_SUCCESS (Status))
|
||||
NtClose(DeviceHandle);
|
||||
NtClose(DirectoryHandle);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
WARN ("NtQuerySymbolicLinkObject() failed (Status %lx)\n", Status);
|
||||
BaseSetLastNTError (Status);
|
||||
WARN("NtQuerySymbolicLinkObject() failed (Status %lx)\n", Status);
|
||||
BaseSetLastNTError(Status);
|
||||
return 0;
|
||||
}
|
||||
|
||||
TRACE ("ReturnLength: %lu\n", ReturnLength);
|
||||
TRACE ("TargetLength: %hu\n", UnicodeString.Length);
|
||||
TRACE ("Target: '%wZ'\n", &UnicodeString);
|
||||
TRACE("ReturnLength: %lu\n", ReturnLength);
|
||||
TRACE("TargetLength: %hu\n", UnicodeString.Length);
|
||||
TRACE("Target: '%wZ'\n", &UnicodeString);
|
||||
|
||||
Length = UnicodeString.Length / sizeof(WCHAR);
|
||||
if (Length < ucchMax)
|
||||
|
@ -408,8 +395,8 @@ QueryDosDeviceW(
|
|||
}
|
||||
else
|
||||
{
|
||||
TRACE ("Buffer is too small\n");
|
||||
BaseSetLastNTError (STATUS_BUFFER_TOO_SMALL);
|
||||
TRACE("Buffer is too small\n");
|
||||
BaseSetLastNTError(STATUS_BUFFER_TOO_SMALL);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -422,9 +409,9 @@ QueryDosDeviceW(
|
|||
|
||||
while (TRUE)
|
||||
{
|
||||
Status = NtQueryDirectoryObject (DirectoryHandle,
|
||||
Status = NtQueryDirectoryObject(DirectoryHandle,
|
||||
Buffer,
|
||||
sizeof (Buffer),
|
||||
sizeof(Buffer),
|
||||
TRUE,
|
||||
RestartScan,
|
||||
&Context,
|
||||
|
@ -443,13 +430,13 @@ QueryDosDeviceW(
|
|||
{
|
||||
Length = 0;
|
||||
}
|
||||
BaseSetLastNTError (Status);
|
||||
BaseSetLastNTError(Status);
|
||||
break;
|
||||
}
|
||||
|
||||
if (!wcscmp (DirInfo->TypeName.Buffer, L"SymbolicLink"))
|
||||
if (!wcscmp(DirInfo->TypeName.Buffer, L"SymbolicLink"))
|
||||
{
|
||||
TRACE ("Name: '%wZ'\n", &DirInfo->Name);
|
||||
TRACE("Name: '%wZ'\n", &DirInfo->Name);
|
||||
|
||||
NameLength = DirInfo->Name.Length / sizeof(WCHAR);
|
||||
if (Length + NameLength + 1 >= ucchMax)
|
||||
|
@ -459,9 +446,7 @@ QueryDosDeviceW(
|
|||
break;
|
||||
}
|
||||
|
||||
memcpy (Ptr,
|
||||
DirInfo->Name.Buffer,
|
||||
DirInfo->Name.Length);
|
||||
memcpy(Ptr, DirInfo->Name.Buffer, DirInfo->Name.Length);
|
||||
Ptr += NameLength;
|
||||
Length += NameLength;
|
||||
*Ptr = UNICODE_NULL;
|
||||
|
@ -472,7 +457,7 @@ QueryDosDeviceW(
|
|||
RestartScan = FALSE;
|
||||
}
|
||||
|
||||
NtClose (DirectoryHandle);
|
||||
NtClose(DirectoryHandle);
|
||||
}
|
||||
|
||||
return Length;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue