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
26192671
Commit
26192671
authored
Jul 02, 2017
by
Pierre Schweitzer
Committed by
Alexandre Julliard
Jul 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr: Implement WNetConnectionDialog().
Signed-off-by:
Pierre Schweitzer
<
pierre@reactos.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fc33e982
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
wnet.c
dlls/mpr/wnet.c
+11
-3
No files found.
dlls/mpr/wnet.c
View file @
26192671
...
...
@@ -2440,10 +2440,18 @@ DWORD WINAPI WNetGetUserW( LPCWSTR lpName, LPWSTR lpUserID, LPDWORD lpBufferSize
*/
DWORD
WINAPI
WNetConnectionDialog
(
HWND
hwnd
,
DWORD
dwType
)
{
FIXME
(
"(%p, %08X): stub
\n
"
,
hwnd
,
dwType
);
CONNECTDLGSTRUCTW
conn_dlg
;
NETRESOURCEW
net_res
;
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
ZeroMemory
(
&
conn_dlg
,
sizeof
(
conn_dlg
));
ZeroMemory
(
&
net_res
,
sizeof
(
net_res
));
conn_dlg
.
cbStructure
=
sizeof
(
conn_dlg
);
conn_dlg
.
lpConnRes
=
&
net_res
;
conn_dlg
.
hwndOwner
=
hwnd
;
net_res
.
dwType
=
dwType
;
return
WNetConnectionDialog1W
(
&
conn_dlg
);
}
/*********************************************************************
...
...
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