[WS2_32] Add inet_pton, inet_ntop

This commit is contained in:
Baruch Rutman 2024-04-20 22:30:01 +03:00 committed by Hermès BÉLUSCA - MAÏTO
parent 56229b7a06
commit 454de56c6b
3 changed files with 146 additions and 2 deletions

View file

@ -451,7 +451,7 @@ PCSTR
WSAAPI
inet_ntop(
_In_ INT Family,
_In_ PVOID pAddr,
_In_ const VOID *pAddr,
_Out_writes_(StringBufSize) PSTR pStringBuf,
_In_ size_t StringBufSize);
@ -459,7 +459,7 @@ PCWSTR
WSAAPI
InetNtopW(
_In_ INT Family,
_In_ PVOID pAddr,
_In_ const VOID *pAddr,
_Out_writes_(StringBufSize) PWSTR pStringBuf,
_In_ size_t StringBufSize);