Commit 04201096 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Add stub for NtQuerySystemEnvironmentValueEx.

parent 6157f4a9
...@@ -42,7 +42,17 @@ NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValue(PUNICODE_STRING VariableN ...@@ -42,7 +42,17 @@ NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValue(PUNICODE_STRING VariableN
ULONG ValueBufferLength, ULONG ValueBufferLength,
PULONG RequiredLength) PULONG RequiredLength)
{ {
FIXME("stub!\n"); FIXME("(%s, %p, %u, %p), stub\n", debugstr_us(VariableName), Value, ValueBufferLength, RequiredLength);
return STATUS_NOT_IMPLEMENTED;
}
/******************************************************************************
* NtQuerySystemEnvironmentValueEx [NTDLL.@]
*/
NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValueEx(PUNICODE_STRING name, LPGUID vendor,
PVOID value, PULONG retlength, PULONG attrib)
{
FIXME("(%s, %s, %p, %p, %p), stub\n", debugstr_us(name), debugstr_guid(vendor), value, retlength, attrib);
return STATUS_NOT_IMPLEMENTED; return STATUS_NOT_IMPLEMENTED;
} }
......
...@@ -266,7 +266,7 @@ ...@@ -266,7 +266,7 @@
@ stdcall NtQuerySemaphore (long long ptr long ptr) @ stdcall NtQuerySemaphore (long long ptr long ptr)
@ stdcall NtQuerySymbolicLinkObject(long ptr ptr) @ stdcall NtQuerySymbolicLinkObject(long ptr ptr)
@ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr) @ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
# @ stub NtQuerySystemEnvironmentValueEx @ stdcall NtQuerySystemEnvironmentValueEx(ptr ptr ptr ptr ptr)
@ stdcall NtQuerySystemInformation(long long long long) @ stdcall NtQuerySystemInformation(long long long long)
@ stdcall NtQuerySystemTime(ptr) @ stdcall NtQuerySystemTime(ptr)
@ stdcall NtQueryTimer(ptr long ptr long ptr) @ stdcall NtQueryTimer(ptr long ptr long ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment