1999-08-07 16:32:33 +02:00
|
|
|
/*
|
|
|
|
* MPR Password Cache functions
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* Copyright 1999 Ulrich Weigand
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-08-07 16:32:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winnetwk.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-08-07 16:32:33 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mpr);
|
1999-08-07 16:32:33 +02:00
|
|
|
|
|
|
|
/**************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* WNetCachePassword [MPR.@] Saves password in cache
|
1999-08-07 16:32:33 +02:00
|
|
|
*
|
1999-11-23 23:27:03 +01:00
|
|
|
* NOTES
|
2002-06-01 01:06:46 +02:00
|
|
|
* only the parameter count is verifyed
|
1999-11-23 23:27:03 +01:00
|
|
|
*
|
|
|
|
* ---- everything below this line might be wrong (js) -----
|
1999-08-07 16:32:33 +02:00
|
|
|
* RETURNS
|
|
|
|
* Success: WN_SUCCESS
|
|
|
|
* Failure: WN_ACCESS_DENIED, WN_BAD_PASSWORD, WN_BADVALUE, WN_NET_ERROR,
|
|
|
|
* WN_NOT_SUPPORTED, WN_OUT_OF_MEMORY
|
|
|
|
*/
|
|
|
|
DWORD WINAPI WNetCachePassword(
|
|
|
|
LPSTR pbResource, /* [in] Name of workgroup, computer, or resource */
|
|
|
|
WORD cbResource, /* [in] Size of name */
|
|
|
|
LPSTR pbPassword, /* [in] Buffer containing password */
|
|
|
|
WORD cbPassword, /* [in] Size of password */
|
1999-11-23 23:27:03 +01:00
|
|
|
BYTE nType, /* [in] Type of password to cache */
|
|
|
|
WORD x)
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-08-07 16:32:33 +02:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
FIXME( "(%p(%s), %d, %p(%s), %d, %d, 0x%08x): stub\n",
|
1999-11-23 23:27:03 +01:00
|
|
|
pbResource, debugstr_a(pbResource), cbResource,
|
|
|
|
pbPassword, debugstr_a(pbPassword), cbPassword,
|
|
|
|
nType, x );
|
1999-08-07 16:32:33 +02:00
|
|
|
|
2003-05-12 05:29:50 +02:00
|
|
|
return WN_NOT_SUPPORTED;
|
1999-08-07 16:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* WNetRemoveCachedPassword [MPR.@]
|
1999-08-07 16:32:33 +02:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT WINAPI WNetRemoveCachedPassword( LPSTR pbResource, WORD cbResource,
|
1999-08-07 16:32:33 +02:00
|
|
|
BYTE nType )
|
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
FIXME( "(%p(%s), %d, %d): stub\n",
|
1999-11-23 23:27:03 +01:00
|
|
|
pbResource, debugstr_a(pbResource), cbResource, nType );
|
1999-08-07 16:32:33 +02:00
|
|
|
|
2003-05-12 05:29:50 +02:00
|
|
|
return WN_NOT_SUPPORTED;
|
1999-08-07 16:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* WNetGetCachedPassword [MPR.@] Retrieves password from cache
|
1999-08-07 16:32:33 +02:00
|
|
|
*
|
1999-11-23 23:27:03 +01:00
|
|
|
* NOTES
|
|
|
|
* the stub seems to be wrong:
|
|
|
|
* arg1: ptr 0x40xxxxxx -> (no string)
|
|
|
|
* arg2: len 36
|
|
|
|
* arg3: ptr 0x40xxxxxx -> (no string)
|
|
|
|
* arg4: ptr 0x40xxxxxx -> 0xc8
|
|
|
|
* arg5: type? 4
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1999-11-23 23:27:03 +01:00
|
|
|
* ---- everything below this line might be wrong (js) -----
|
1999-08-07 16:32:33 +02:00
|
|
|
* RETURNS
|
|
|
|
* Success: WN_SUCCESS
|
2002-06-01 01:06:46 +02:00
|
|
|
* Failure: WN_ACCESS_DENIED, WN_BAD_PASSWORD, WN_BAD_VALUE,
|
1999-08-07 16:32:33 +02:00
|
|
|
* WN_NET_ERROR, WN_NOT_SUPPORTED, WN_OUT_OF_MEMORY
|
|
|
|
*/
|
|
|
|
DWORD WINAPI WNetGetCachedPassword(
|
|
|
|
LPSTR pbResource, /* [in] Name of workgroup, computer, or resource */
|
|
|
|
WORD cbResource, /* [in] Size of name */
|
|
|
|
LPSTR pbPassword, /* [out] Buffer to receive password */
|
|
|
|
LPWORD pcbPassword, /* [out] Receives size of password */
|
|
|
|
BYTE nType) /* [in] Type of password to retrieve */
|
|
|
|
{
|
1999-11-23 23:27:03 +01:00
|
|
|
FIXME( "(%p(%s), %d, %p, %p, %d): stub\n",
|
|
|
|
pbResource, debugstr_a(pbResource), cbResource,
|
|
|
|
pbPassword, pcbPassword, nType );
|
1999-08-07 16:32:33 +02:00
|
|
|
|
2003-05-12 05:29:50 +02:00
|
|
|
return WN_NOT_SUPPORTED;
|
1999-08-07 16:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* WNetEnumCachedPasswords [MPR.@]
|
1999-11-23 23:27:03 +01:00
|
|
|
*
|
|
|
|
* NOTES
|
2002-06-01 01:06:46 +02:00
|
|
|
* the parameter count is verifyed
|
1999-11-23 23:27:03 +01:00
|
|
|
*
|
|
|
|
* observed values:
|
|
|
|
* arg1 ptr 0x40xxxxxx -> (no string)
|
|
|
|
* arg2 int 32
|
|
|
|
* arg3 type? 4
|
|
|
|
* arg4 enumPasswordProc (verifyed)
|
|
|
|
* arg5 ptr 0x40xxxxxx -> 0x0
|
|
|
|
*
|
|
|
|
* ---- everything below this line might be wrong (js) -----
|
1999-08-07 16:32:33 +02:00
|
|
|
*/
|
1999-11-23 23:27:03 +01:00
|
|
|
|
1999-08-07 16:32:33 +02:00
|
|
|
UINT WINAPI WNetEnumCachedPasswords( LPSTR pbPrefix, WORD cbPrefix,
|
1999-11-23 23:27:03 +01:00
|
|
|
BYTE nType, ENUMPASSWORDPROC enumPasswordProc, DWORD x)
|
1999-08-07 16:32:33 +02:00
|
|
|
{
|
1999-11-23 23:27:03 +01:00
|
|
|
FIXME( "(%p(%s), %d, %d, %p, 0x%08lx): stub\n",
|
|
|
|
pbPrefix, debugstr_a(pbPrefix), cbPrefix,
|
|
|
|
nType, enumPasswordProc, x );
|
1999-08-07 16:32:33 +02:00
|
|
|
|
2003-05-12 05:29:50 +02:00
|
|
|
return WN_NOT_SUPPORTED;
|
1999-08-07 16:32:33 +02:00
|
|
|
}
|