Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9246024a
Commit
9246024a
authored
May 25, 2020
by
Alex Henrie
Committed by
Alexandre Julliard
May 26, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add RtlIpv4AddressToString(Ex)[AW].
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bab2de00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
ip2string.h
include/ip2string.h
+7
-0
No files found.
include/ip2string.h
View file @
9246024a
...
...
@@ -23,6 +23,13 @@
extern
"C"
{
#endif
char
*
WINAPI
RtlIpv4AddressToStringA
(
const
IN_ADDR
*
address
,
char
*
str
);
WCHAR
*
WINAPI
RtlIpv4AddressToStringW
(
const
IN_ADDR
*
address
,
WCHAR
*
str
);
#define RtlIpv4AddressToString WINELIB_NAME_AW(RtlIpv4AddressToString)
NTSTATUS
WINAPI
RtlIpv4AddressToStringExA
(
const
IN_ADDR
*
address
,
USHORT
port
,
char
*
str
,
ULONG
*
size
);
NTSTATUS
WINAPI
RtlIpv4AddressToStringExW
(
const
IN_ADDR
*
address
,
USHORT
port
,
WCHAR
*
str
,
ULONG
*
size
);
#define RtlIpv4AddressToStringEx WINELIB_NAME_AW(RtlIpv4AddressToStringEx)
NTSTATUS
WINAPI
RtlIpv4StringToAddressA
(
const
char
*
str
,
BOOLEAN
strict
,
const
char
**
terminator
,
IN_ADDR
*
address
);
NTSTATUS
WINAPI
RtlIpv4StringToAddressW
(
const
WCHAR
*
str
,
BOOLEAN
strict
,
const
WCHAR
**
terminator
,
IN_ADDR
*
address
);
#define RtlIpv4StringToAddress WINELIB_NAME_AW(RtlIpv4StringToAddress)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment