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
73cf91e0
Commit
73cf91e0
authored
May 17, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
May 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some stubs added.
parent
4b6b1c3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
5 deletions
+77
-5
network.c
misc/network.c
+72
-0
mpr.spec
relay32/mpr.spec
+5
-5
No files found.
misc/network.c
View file @
73cf91e0
...
...
@@ -828,6 +828,68 @@ DWORD WINAPI WNetGetUserW(
return
WN_NO_NETWORK
;
}
/*****************************************************************
* WNetGetProviderNameA [MPR.79]
*/
DWORD
WINAPI
WNetGetProviderNameA
(
DWORD
dwNetType
,
LPSTR
lpProvider
,
LPDWORD
lpBufferSize
)
{
FIXME_
(
wnet
)(
": stub
\n
"
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
}
/*****************************************************************
* WNetGetProviderNameW [MPR.80]
*/
DWORD
WINAPI
WNetGetProviderNameW
(
DWORD
dwNetType
,
LPWSTR
lpProvider
,
LPDWORD
lpBufferSize
)
{
FIXME_
(
wnet
)(
": stub
\n
"
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
}
/*****************************************************************
* WNetUseConnectionA [MPR.100]
*/
DWORD
WINAPI
WNetUseConnectionA
(
HWND
hwndOwner
,
LPNETRESOURCEA
lpNetResource
,
LPSTR
lpPassword
,
LPSTR
lpUserID
,
DWORD
dwFlags
,
LPSTR
lpAccessName
,
LPDWORD
lpBufferSize
,
LPDWORD
lpResult
)
{
FIXME_
(
wnet
)(
": stub
\n
"
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
}
/*****************************************************************
* WNetUseConnectionW [MPR.101]
*/
DWORD
WINAPI
WNetUseConnectionW
(
HWND
hwndOwner
,
LPNETRESOURCEW
lpNetResource
,
LPWSTR
lpPassword
,
LPWSTR
lpUserID
,
DWORD
dwFlags
,
LPWSTR
lpAccessName
,
LPDWORD
lpBufferSize
,
LPDWORD
lpResult
)
{
FIXME_
(
wnet
)(
": stub
\n
"
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
}
/*
* FIXME: The following routines should use a private heap ...
...
...
@@ -863,3 +925,13 @@ BOOL WINAPI MPR_Free( LPVOID lpMem )
return
FALSE
;
}
/*****************************************************************
* [MPR.25]
*/
BOOL
WINAPI
_MPR_25
(
LPBYTE
lpMem
,
INT
len
)
{
FIXME_
(
mpr
)(
"(%p, %d): stub
\n
"
,
lpMem
,
len
);
return
FALSE
;
}
relay32/mpr.spec
View file @
73cf91e0
...
...
@@ -25,7 +25,7 @@ type win32
0022 stdcall MPR_Alloc(long) MPR_Alloc
0023 stdcall MPR_ReAlloc(ptr long) MPR_ReAlloc
0024 stdcall MPR_Free(ptr) MPR_Free
0025 st
ub
MPR_25
0025 st
dcall MPR_25(ptr long) _
MPR_25
0026 stdcall MultinetGetConnectionPerformanceA(ptr ptr) MultinetGetConnectionPerformanceA
0027 stub MultinetGetConnectionPerformanceW
0028 stdcall MultinetGetErrorTextA(long ptr long)MultinetGetErrorTextA
...
...
@@ -79,8 +79,8 @@ type win32
0076 stub WNetGetLastErrorW
0077 stub WNetGetNetworkInformationA
0078 stub WNetGetNetworkInformationW
0079 st
ub
WNetGetProviderNameA
0080 st
ub
WNetGetProviderNameW
0079 st
dcall WNetGetProviderNameA(long ptr ptr)
WNetGetProviderNameA
0080 st
dcall WNetGetProviderNameW(long ptr ptr)
WNetGetProviderNameW
0081 stdcall WNetGetResourceInformationA(ptr ptr ptr ptr) WNetGetResourceInformationA
0082 stub WNetGetResourceInformationW
0083 stub WNetGetResourceParentA
...
...
@@ -100,8 +100,8 @@ type win32
0097 stub WNetRestoreConnectionW
0098 stub WNetSetConnectionA
0099 stub WNetSetConnectionW
0100 st
ub WNetUseConnectionA
0101 st
ub
WNetUseConnectionW
0100 st
dcall WNetUseConnectionA(long ptr str str long str ptr ptr) WNetUseConnectionA
0101 st
dcall WNetUseConnectionW(long ptr wstr wstr long wstr ptr ptr)
WNetUseConnectionW
0102 stub WNetVerifyPasswordA
0103 stub WNetVerifyPasswordW
...
...
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