Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
8d799905
Commit
8d799905
authored
25 years ago
by
Juergen Schmied
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stub for WNetGetUniversalName[A|W].
parent
56c0bb8b
No related branches found
Branches containing commit
Tags
wine-970202
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
misc/network.c
+21
-0
21 additions, 0 deletions
misc/network.c
relay32/mpr.spec
+2
-2
2 additions, 2 deletions
relay32/mpr.spec
with
23 additions
and
2 deletions
misc/network.c
+
21
−
0
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
;
}
This diff is collapsed.
Click to expand it.
relay32/mpr.spec
+
2
−
2
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment