ntdll: Add stub for RtlIpv6StringToAddressExW.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c88a65f2ab
commit
3f4af3afce
|
@ -735,7 +735,7 @@
|
|||
# @ stub RtlIpv6AddressToStringW
|
||||
# @ stub RtlIpv6StringToAddressA
|
||||
# @ stub RtlIpv6StringToAddressExA
|
||||
# @ stub RtlIpv6StringToAddressExW
|
||||
@ stdcall RtlIpv6StringToAddressExW(wstr ptr ptr ptr)
|
||||
# @ stub RtlIpv6StringToAddressW
|
||||
@ stdcall RtlIsActivationContextActive(ptr)
|
||||
@ stdcall RtlIsCriticalSectionLocked(ptr)
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
#include "wine/unicode.h"
|
||||
#include "ntdll_misc.h"
|
||||
#include "inaddr.h"
|
||||
#include "in6addr.h"
|
||||
#include "ddk/ntddk.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
|
||||
|
@ -902,6 +903,15 @@ NTSTATUS WINAPI RtlIpv4StringToAddressW(const WCHAR *str, BOOLEAN strict, const
|
|||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RtlIpv6StringToAddressExW [NTDLL.@]
|
||||
*/
|
||||
NTSTATUS NTAPI RtlIpv6StringToAddressExW(const WCHAR *str, IN6_ADDR *address, ULONG *scope, USHORT *port)
|
||||
{
|
||||
FIXME("(%s, %p, %p, %p): stub\n", debugstr_w(str), address, scope, port);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RtlIpv4AddressToStringExW [NTDLL.@]
|
||||
*
|
||||
|
|
|
@ -1096,7 +1096,7 @@
|
|||
@ stub RtlIpv6AddressToStringW
|
||||
@ stub RtlIpv6StringToAddressA
|
||||
@ stub RtlIpv6StringToAddressExA
|
||||
@ stub RtlIpv6StringToAddressExW
|
||||
@ stdcall RtlIpv6StringToAddressExW(wstr ptr ptr ptr)
|
||||
@ stub RtlIpv6StringToAddressW
|
||||
@ stub RtlIsGenericTableEmpty
|
||||
@ stub RtlIsGenericTableEmptyAvl
|
||||
|
|
Loading…
Reference in New Issue