mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Sync to Wine-20050628:
Alexandre Julliard <julliard@winehq.org> - Sort entry points in the same order as Windows. - Added magic comments to all Wine-specific registry accesses to make them easier to grep. svn path=/trunk/; revision=16484
This commit is contained in:
parent
4fedfe1bf7
commit
d7990aa664
2 changed files with 13 additions and 11 deletions
|
@ -67,17 +67,22 @@
|
|||
@ stdcall WNetEnumCachedPasswords(str long long ptr long)
|
||||
@ stdcall WNetEnumResourceA(long ptr ptr ptr)
|
||||
@ stdcall WNetEnumResourceW(long ptr ptr ptr)
|
||||
@ stub WNetFMXEditPerm
|
||||
@ stub WNetFMXGetPermCaps
|
||||
@ stub WNetFMXGetPermHelp
|
||||
@ stub WNetFormatNetworkNameA
|
||||
@ stub WNetFormatNetworkNameW
|
||||
@ stdcall WNetGetCachedPassword(ptr long ptr ptr long)
|
||||
@ stdcall WNetGetConnectionA(str ptr ptr)
|
||||
@ stdcall WNetGetConnectionW(wstr ptr ptr)
|
||||
@ stub WNetGetDirectoryTypeA
|
||||
@ stub WNetGetHomeDirectoryA
|
||||
@ stub WNetGetHomeDirectoryW
|
||||
@ stdcall WNetGetLastErrorA(ptr ptr long ptr long)
|
||||
@ stdcall WNetGetLastErrorW(ptr ptr long ptr long)
|
||||
@ stdcall WNetGetNetworkInformationA(str ptr)
|
||||
@ stdcall WNetGetNetworkInformationW(wstr ptr)
|
||||
@ stub WNetGetPropertyTextA
|
||||
@ stdcall WNetGetProviderNameA(long ptr ptr)
|
||||
@ stdcall WNetGetProviderNameW(long ptr ptr)
|
||||
@ stdcall WNetGetResourceInformationA(ptr ptr ptr ptr)
|
||||
|
@ -91,10 +96,14 @@
|
|||
@ stdcall WNetLogoffA(str long)
|
||||
@ stdcall WNetLogoffW(wstr long)
|
||||
@ stdcall WNetLogonA(str long)
|
||||
@ stub WNetLogonNotify
|
||||
@ stdcall WNetLogonW(wstr long)
|
||||
@ stdcall WNetOpenEnumA(long long long ptr ptr)
|
||||
@ stdcall WNetOpenEnumW(long long long ptr ptr)
|
||||
@ stub WNetPasswordChangeNotify
|
||||
@ stub WNetPropertyDialogA
|
||||
@ stdcall WNetRemoveCachedPassword(long long long)
|
||||
@ stub WNetRestoreConnection
|
||||
@ stdcall WNetRestoreConnectionA(long str)
|
||||
@ stdcall WNetRestoreConnectionW(long wstr)
|
||||
@ stdcall WNetSetConnectionA(str long ptr)
|
||||
|
@ -103,14 +112,3 @@
|
|||
@ stdcall WNetUseConnectionW(long ptr wstr wstr long wstr ptr ptr)
|
||||
@ stdcall WNetVerifyPasswordA(str ptr)
|
||||
@ stdcall WNetVerifyPasswordW(wstr ptr)
|
||||
|
||||
#additions, not in win95 mpr.dll
|
||||
@ stub WNetRestoreConnection
|
||||
@ stub WNetLogonNotify
|
||||
@ stub WNetPasswordChangeNotify
|
||||
@ stub WNetGetPropertyTextA
|
||||
@ stub WNetPropertyDialogA
|
||||
@ stub WNetGetDirectoryTypeA
|
||||
@ stub WNetFMXGetPermHelp
|
||||
@ stub WNetFMXEditPerm
|
||||
@ stub WNetFMXGetPermCaps
|
||||
|
|
|
@ -99,6 +99,7 @@ DWORD WINAPI WNetCachePassword(
|
|||
pbPassword, debugstr_a(pbPassword), cbPassword,
|
||||
nType, x );
|
||||
|
||||
/* @@ Wine registry key: HKCU\Software\Wine\Wine\Mpr */
|
||||
r = RegCreateKeyA( HKEY_CURRENT_USER, mpr_key, &hkey );
|
||||
if( r )
|
||||
return WN_ACCESS_DENIED;
|
||||
|
@ -137,6 +138,7 @@ UINT WINAPI WNetRemoveCachedPassword(
|
|||
WARN( "(%p(%s), %d, %d): totally insecure\n",
|
||||
pbResource, debugstr_a(pbResource), cbResource, nType );
|
||||
|
||||
/* @@ Wine registry key: HKCU\Software\Wine\Wine\Mpr */
|
||||
r = RegCreateKeyA( HKEY_CURRENT_USER, mpr_key, &hkey );
|
||||
if( r )
|
||||
return WN_ACCESS_DENIED;
|
||||
|
@ -191,6 +193,7 @@ DWORD WINAPI WNetGetCachedPassword(
|
|||
|
||||
memset( pbPassword, 0, *pcbPassword);
|
||||
|
||||
/* @@ Wine registry key: HKCU\Software\Wine\Wine\Mpr */
|
||||
r = RegCreateKeyA( HKEY_CURRENT_USER, mpr_key, &hkey );
|
||||
if( r )
|
||||
return WN_ACCESS_DENIED;
|
||||
|
@ -249,6 +252,7 @@ UINT WINAPI WNetEnumCachedPasswords(
|
|||
debugstr_an(pbPrefix,cbPrefix), cbPrefix,
|
||||
nType, enumPasswordProc, param );
|
||||
|
||||
/* @@ Wine registry key: HKCU\Software\Wine\Wine\Mpr */
|
||||
r = RegCreateKeyA( HKEY_CURRENT_USER, mpr_key, &hkey );
|
||||
if( r )
|
||||
return WN_ACCESS_DENIED;
|
||||
|
|
Loading…
Reference in a new issue