Cosmetic: RtlCreateUnicodeString(): Fix 'const' warnings
authorshort <>
Sun, 23 Mar 2003 23:53:57 +0000 (23:53 +0000)
committershort <>
Sun, 23 Mar 2003 23:53:57 +0000 (23:53 +0000)
include/ntos/rtl.h
ntoskrnl/rtl/unicode.c

index 4ff366e..2c9d270 100755 (executable)
@@ -917,7 +917,7 @@ BOOLEAN
 STDCALL
 RtlCreateUnicodeString (
        OUT     PUNICODE_STRING Destination,
-       IN      PWSTR           Source
+       IN      PCWSTR          Source
        );
 
 BOOLEAN STDCALL
index 14b780a..40999be 100644 (file)
@@ -429,7 +429,7 @@ RtlCopyUnicodeString(IN OUT PUNICODE_STRING DestinationString,
 BOOLEAN
 STDCALL
 RtlCreateUnicodeString(IN OUT PUNICODE_STRING Destination,
-                      IN PWSTR Source)
+                      IN PCWSTR Source)
 {
        ULONG Length;