ntdll: Export RtlQueryRegistryValuesEx().
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46969 Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8cb6e9585e
commit
ba5465c71f
3 changed files with 5 additions and 14 deletions
|
@ -901,6 +901,7 @@
|
|||
@ stub RtlQueryPropertyNames
|
||||
@ stub RtlQueryPropertySet
|
||||
@ stdcall RtlQueryRegistryValues(long ptr ptr ptr ptr)
|
||||
@ stdcall RtlQueryRegistryValuesEx(long ptr ptr ptr ptr) RtlQueryRegistryValues
|
||||
@ stub RtlQuerySecurityObject
|
||||
@ stub RtlQueryTagHeap
|
||||
@ stdcall RtlQueryTimeZoneInformation(ptr)
|
||||
|
|
|
@ -460,20 +460,9 @@ static NTSTATUS RTL_GetKeyHandle(ULONG RelativeTo, PCWSTR Path, PHANDLE handle)
|
|||
return status;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* RtlQueryRegistryValues [NTDLL.@]
|
||||
*
|
||||
* Query multiple registry values with a single call.
|
||||
*
|
||||
* PARAMS
|
||||
* RelativeTo [I] Registry path that Path refers to
|
||||
* Path [I] Path to key
|
||||
* QueryTable [I] Table of key values to query
|
||||
* Context [I] Parameter to pass to the application defined QueryRoutine function
|
||||
* Environment [I] Optional parameter to use when performing expansion
|
||||
*
|
||||
* RETURNS
|
||||
* STATUS_SUCCESS or an appropriate NTSTATUS error code.
|
||||
/******************************************************************************
|
||||
* RtlQueryRegistryValues (NTDLL.@)
|
||||
* RtlQueryRegistryValuesEx (NTDLL.@)
|
||||
*/
|
||||
NTSTATUS WINAPI RtlQueryRegistryValues(IN ULONG RelativeTo, IN PCWSTR Path,
|
||||
IN PRTL_QUERY_REGISTRY_TABLE QueryTable, IN PVOID Context,
|
||||
|
|
|
@ -1213,6 +1213,7 @@
|
|||
@ stdcall RtlQueryInformationAcl(ptr ptr long long)
|
||||
@ stdcall RtlQueryPackageIdentity(long ptr ptr ptr ptr ptr)
|
||||
@ stdcall RtlQueryRegistryValues(long ptr ptr ptr ptr)
|
||||
@ stdcall RtlQueryRegistryValuesEx(long ptr ptr ptr ptr) RtlQueryRegistryValues
|
||||
@ stdcall RtlQueryTimeZoneInformation(ptr)
|
||||
@ stdcall -norelay RtlRaiseException(ptr)
|
||||
@ stdcall RtlRaiseStatus(long)
|
||||
|
|
Loading…
Add table
Reference in a new issue