mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[NDK][RTL] Make the Name argument in RtlQueryEnvironmentVariable_U const.
svn path=/trunk/; revision=74534
This commit is contained in:
parent
e4832e1f99
commit
b4e46f9021
2 changed files with 2 additions and 2 deletions
|
@ -2967,7 +2967,7 @@ NTSTATUS
|
|||
NTAPI
|
||||
RtlQueryEnvironmentVariable_U(
|
||||
_In_opt_ PWSTR Environment,
|
||||
_In_ PUNICODE_STRING Name,
|
||||
_In_ PCUNICODE_STRING Name,
|
||||
_Out_ PUNICODE_STRING Value
|
||||
);
|
||||
|
||||
|
|
|
@ -508,7 +508,7 @@ found:
|
|||
*/
|
||||
NTSTATUS NTAPI
|
||||
RtlQueryEnvironmentVariable_U(PWSTR Environment,
|
||||
PUNICODE_STRING Name,
|
||||
PCUNICODE_STRING Name,
|
||||
PUNICODE_STRING Value)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
|
|
Loading…
Reference in a new issue