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
8d799905
Commit
8d799905
authored
Jul 10, 1999
by
Juergen Schmied
Committed by
Alexandre Julliard
Jul 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for WNetGetUniversalName[A|W].
parent
56c0bb8b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
network.c
misc/network.c
+21
-0
mpr.spec
relay32/mpr.spec
+2
-2
No files found.
misc/network.c
View file @
8d799905
...
...
@@ -972,3 +972,24 @@ BOOL WINAPI _MPR_25( LPBYTE lpMem, INT len )
return
FALSE
;
}
/*****************************************************************
* [MPR.85]
*/
DWORD
WINAPI
WNetGetUniversalNameA
(
LPCSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
{
FIXME_
(
mpr
)(
"(%s, 0x%08x, %p, %p): stub
\n
"
,
lpLocalPath
,
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
}
/*****************************************************************
* [MPR.86]
*/
DWORD
WINAPI
WNetGetUniversalNameW
(
LPCWSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
{
FIXME_
(
mpr
)(
"(%s, 0x%08x, %p, %p): stub
\n
"
,
debugstr_w
(
lpLocalPath
),
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
}
relay32/mpr.spec
View file @
8d799905
...
...
@@ -85,8 +85,8 @@ type win32
0082 stub WNetGetResourceInformationW
0083 stub WNetGetResourceParentA
0084 stub WNetGetResourceParentW
0085 st
ub
WNetGetUniversalNameA
0086 st
ub
WNetGetUniversalNameW
0085 st
dcall WNetGetUniversalNameA (str long ptr ptr)
WNetGetUniversalNameA
0086 st
dcall WNetGetUniversalNameW (wstr long ptr ptr)
WNetGetUniversalNameW
0087 stdcall WNetGetUserA(str ptr ptr) WNetGetUserA
0088 stdcall WNetGetUserW(wstr wstr ptr) WNetGetUserW
0089 stub WNetLogoffA
...
...
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