ntdll: Add a stub for NtQuerySystemEnvironmentValue.

This commit is contained in:
Austin English 2009-10-03 15:41:03 -05:00 committed by Alexandre Julliard
parent a78ccf1160
commit 93aa9ebcea
2 changed files with 14 additions and 1 deletions

View File

@ -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.@]
*/

View File

@ -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)