Code formatting

This commit is contained in:
2022-12-23 22:27:08 +01:00
parent db1b47e50e
commit 8f3a4aef60
9 changed files with 23 additions and 23 deletions

View File

@@ -58,7 +58,7 @@ RtlInitializeListHead32(IN PLIST_ENTRY32 ListHead)
*/
VOID
RtlInsertHeadList(IN OUT PLIST_ENTRY ListHead,
IN OUT PLIST_ENTRY Entry)
IN PLIST_ENTRY Entry)
{
Entry->Flink = ListHead->Flink;
Entry->Blink = ListHead;
@@ -81,7 +81,7 @@ RtlInsertHeadList(IN OUT PLIST_ENTRY ListHead,
*/
VOID
RtlInsertTailList(IN OUT PLIST_ENTRY ListHead,
IN OUT PLIST_ENTRY Entry)
IN PLIST_ENTRY Entry)
{
Entry->Flink = ListHead;
Entry->Blink = ListHead->Blink;

View File

@@ -69,9 +69,9 @@ RtlStringLength(IN CONST PUCHAR String,
*/
XTCDECL
INT
RtlStringToWideString(PWCHAR Destination,
CONST PUCHAR *Source,
SIZE_T Length)
RtlStringToWideString(OUT PWCHAR Destination,
IN CONST PUCHAR *Source,
IN SIZE_T Length)
{
PUCHAR LocalSource = *Source;
SIZE_T Count = Length;