Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e21aff07
Commit
e21aff07
authored
Feb 02, 2006
by
Johan Dahlin
Committed by
Alexandre Julliard
Feb 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: RtlIpv4AddressToStringExW/RtlIpv4StringToAddressExW stubs.
parent
58331121
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
rtl.c
dlls/ntdll/rtl.c
+16
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
e21aff07
...
...
@@ -684,11 +684,11 @@
# @ stub RtlInvertRangeList
# @ stub RtlIpv4AddressToStringA
# @ stub RtlIpv4AddressToStringExA
# @ stub RtlIpv4AddressToStringExW
@ stdcall RtlIpv4AddressToStringExW(ptr ptr ptr ptr)
# @ stub RtlIpv4AddressToStringW
# @ stub RtlIpv4StringToAddressA
# @ stub RtlIpv4StringToAddressExA
# @ stub RtlIpv4StringToAddressExW
@ stdcall RtlIpv4StringToAddressExW(ptr ptr wstr ptr)
# @ stub RtlIpv4StringToAddressW
# @ stub RtlIpv6AddressToStringA
# @ stub RtlIpv6AddressToStringExA
...
...
dlls/ntdll/rtl.c
View file @
e21aff07
...
...
@@ -860,3 +860,19 @@ void WINAPI RtlCopyLuidAndAttributesArray(
for
(
i
=
0
;
i
<
Count
;
i
++
)
Dest
[
i
]
=
Src
[
i
];
}
NTSTATUS
WINAPI
RtlIpv4StringToAddressExW
(
PULONG
IP
,
PULONG
Port
,
LPCWSTR
Buffer
,
PULONG
MaxSize
)
{
FIXME
(
"(%p,%p,%p,%p): stub
\n
"
,
IP
,
Port
,
Buffer
,
MaxSize
);
return
STATUS_SUCCESS
;
}
NTSTATUS
WINAPI
RtlIpv4AddressToStringExW
(
PULONG
IP
,
PULONG
Port
,
LPWSTR
Buffer
,
PULONG
MaxSize
)
{
FIXME
(
"(%p,%p,%p,%p): stub
\n
"
,
IP
,
Port
,
Buffer
,
MaxSize
);
return
STATUS_SUCCESS
;
}
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