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
fbab61c4
Commit
fbab61c4
authored
Mar 28, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr: Improve the stub for WNetGetUniversalNameW.
parent
f5c1381e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
2 deletions
+27
-2
wnet.c
dlls/mpr/wnet.c
+27
-2
No files found.
dlls/mpr/wnet.c
View file @
fbab61c4
...
...
@@ -1711,11 +1711,36 @@ DWORD WINAPI WNetGetUniversalNameA ( LPCSTR lpLocalPath, DWORD dwInfoLevel,
DWORD
WINAPI
WNetGetUniversalNameW
(
LPCWSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
{
LPUNIVERSAL_NAME_INFOW
uniw
;
DWORD
err
,
len
;
FIXME
(
"(%s, 0x%08lX, %p, %p): stub
\n
"
,
debugstr_w
(
lpLocalPath
),
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
switch
(
dwInfoLevel
)
{
case
UNIVERSAL_NAME_INFO_LEVEL
:
err
=
WN_MORE_DATA
;
len
=
sizeof
(
*
uniw
)
+
lstrlenW
(
lpLocalPath
);
if
(
*
lpBufferSize
<=
len
)
break
;
uniw
=
lpBuffer
;
uniw
->
lpUniversalName
=
(
LPWSTR
)
&
uniw
[
1
];
lstrcpyW
(
uniw
->
lpUniversalName
,
lpLocalPath
);
*
lpBufferSize
=
len
;
err
=
WN_NO_ERROR
;
break
;
case
REMOTE_NAME_INFO_LEVEL
:
err
=
WN_NO_NETWORK
;
break
;
default:
err
=
WN_BAD_VALUE
;
}
SetLastError
(
err
);
return
err
;
}
...
...
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