NAME

RtlIpv4AddressToStringExW  (NTDLL.@)

SYNOPSIS

 NTSTATUS RtlIpv4AddressToStringExW
 (
  const IN_ADDR* pin,
  USHORT         port,
  LPWSTR         buffer,
  PULONG         psize
 )

DESCRIPTION

Convert the given ipv4 address and optional the port to a string.

PARAMS

pin [In] PTR to the ip address to convert (network byte order).
port [In] optional port to convert (network byte order).
buffer [Out] destination buffer for the result.
psize [IO] PTR to available/used size of the destination buffer.

RETURNS

Success: STATUS_SUCCESS

Failure: STATUS_INVALID_PARAMETER

IMPLEMENTATION

Declared in "ip2string.h". https://source.winehq.org/source/include/ip2string.h

Implemented in "dlls/ntdll/rtl.c". https://source.winehq.org/source/dlls/ntdll/rtl.c

Debug channel "ntdll".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.