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
e834f8a2
Commit
e834f8a2
authored
Mar 24, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr: Add a stub implementation for WNetGetUniversalNameA.
parent
82c15403
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
2 deletions
+31
-2
wnet.c
dlls/mpr/wnet.c
+31
-2
No files found.
dlls/mpr/wnet.c
View file @
e834f8a2
...
...
@@ -1700,11 +1700,40 @@ DWORD WINAPI WNetSetConnectionW( LPCWSTR lpName, DWORD dwProperty,
DWORD
WINAPI
WNetGetUniversalNameA
(
LPCSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
{
DWORD
err
,
size
;
FIXME
(
"(%s, 0x%08X, %p, %p): stub
\n
"
,
debugstr_a
(
lpLocalPath
),
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
switch
(
dwInfoLevel
)
{
case
UNIVERSAL_NAME_INFO_LEVEL
:
{
LPUNIVERSAL_NAME_INFOA
info
=
(
LPUNIVERSAL_NAME_INFOA
)
lpBuffer
;
size
=
sizeof
(
*
info
)
+
lstrlenA
(
lpLocalPath
)
+
1
;
if
(
*
lpBufferSize
<
size
)
{
err
=
WN_MORE_DATA
;
break
;
}
info
->
lpUniversalName
=
(
char
*
)
info
+
sizeof
(
*
info
);
lstrcpyA
(
info
->
lpUniversalName
,
lpLocalPath
);
*
lpBufferSize
=
size
;
err
=
WN_NO_ERROR
;
break
;
}
case
REMOTE_NAME_INFO_LEVEL
:
err
=
WN_NO_NETWORK
;
break
;
default:
err
=
WN_BAD_VALUE
;
break
;
}
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