mirror of
https://github.com/reactos/wine.git
synced 2025-01-26 14:05:07 +00:00
ntdll: Add stub for NtQuerySystemEnvironmentValueEx.
This commit is contained in:
parent
6157f4a9f4
commit
04201096a2
@ -42,7 +42,17 @@ NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValue(PUNICODE_STRING VariableN
|
||||
ULONG ValueBufferLength,
|
||||
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;
|
||||
}
|
||||
|
||||
|
@ -266,7 +266,7 @@
|
||||
@ stdcall NtQuerySemaphore (long long ptr long ptr)
|
||||
@ stdcall NtQuerySymbolicLinkObject(long ptr ptr)
|
||||
@ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
|
||||
# @ stub NtQuerySystemEnvironmentValueEx
|
||||
@ stdcall NtQuerySystemEnvironmentValueEx(ptr ptr ptr ptr ptr)
|
||||
@ stdcall NtQuerySystemInformation(long long long long)
|
||||
@ stdcall NtQuerySystemTime(ptr)
|
||||
@ stdcall NtQueryTimer(ptr long ptr long ptr)
|
||||
|
Loading…
x
Reference in New Issue
Block a user