ntdll: Add a stub for NtQuerySystemEnvironmentValue.
This commit is contained in:
parent
a78ccf1160
commit
93aa9ebcea
|
@ -30,9 +30,22 @@
|
|||
#include "wine/unicode.h"
|
||||
#include "wine/debug.h"
|
||||
#include "ntdll_misc.h"
|
||||
#include "winnt.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(environ);
|
||||
|
||||
/******************************************************************************
|
||||
* NtQuerySystemEnvironmentValue [NTDLL.@]
|
||||
*/
|
||||
NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValue(PUNICODE_STRING VariableName,
|
||||
PWCHAR Value,
|
||||
ULONG ValueBufferLength,
|
||||
PULONG RequiredLength)
|
||||
{
|
||||
FIXME("stub!\n");
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* RtlCreateEnvironment [NTDLL.@]
|
||||
*/
|
||||
|
|
|
@ -264,7 +264,7 @@
|
|||
@ stdcall NtQuerySecurityObject (long long long long long)
|
||||
@ stdcall NtQuerySemaphore (long long ptr long ptr)
|
||||
@ stdcall NtQuerySymbolicLinkObject(long ptr ptr)
|
||||
@ stub NtQuerySystemEnvironmentValue
|
||||
@ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
|
||||
# @ stub NtQuerySystemEnvironmentValueEx
|
||||
@ stdcall NtQuerySystemInformation(long long long long)
|
||||
@ stdcall NtQuerySystemTime(ptr)
|
||||
|
|
Loading…
Reference in New Issue