1999-01-03 13:48:29 +01:00
|
|
|
/*
|
|
|
|
* Win32 advapi functions
|
|
|
|
*
|
|
|
|
* Copyright 1995 Sven Verdoolaege
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* 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-01-03 13:48:29 +01:00
|
|
|
*/
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2001-11-20 21:26:54 +01:00
|
|
|
#include <errno.h>
|
1999-06-12 16:55:11 +02:00
|
|
|
#include <stdio.h>
|
1999-02-19 16:42:11 +01:00
|
|
|
#include <string.h>
|
2003-08-22 07:05:56 +02:00
|
|
|
#include <stdarg.h>
|
1999-02-17 14:51:06 +01:00
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
#include "windef.h"
|
2003-08-22 07:05:56 +02:00
|
|
|
#include "winbase.h"
|
2000-11-28 23:40:56 +01:00
|
|
|
#include "winnls.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winreg.h"
|
1999-01-03 13:48:29 +01:00
|
|
|
#include "winerror.h"
|
|
|
|
|
2002-08-27 20:30:53 +02:00
|
|
|
#include "wine/library.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-02-17 14:51:06 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(advapi);
|
1999-01-03 13:48:29 +01:00
|
|
|
|
1999-01-28 14:46:25 +01:00
|
|
|
/******************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetUserNameA [ADVAPI32.@]
|
2001-11-20 21:26:54 +01:00
|
|
|
*
|
2003-03-18 19:35:48 +01:00
|
|
|
* Get the current user name.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* lpszName [O] Destination for the user name.
|
|
|
|
* lpSize [I/O] Size of lpszName.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: The length of the user name, including terminating NUL.
|
|
|
|
* Failure: ERROR_MORE_DATA if *lpSize is too small.
|
1999-01-03 13:48:29 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL WINAPI
|
|
|
|
GetUserNameA( LPSTR lpszName, LPDWORD lpSize )
|
1999-01-03 13:48:29 +01:00
|
|
|
{
|
|
|
|
size_t len;
|
2002-08-27 20:30:53 +02:00
|
|
|
const char *name = wine_get_user_name();
|
2001-11-20 21:26:54 +01:00
|
|
|
|
|
|
|
/* We need to include the null character when determining the size of the buffer. */
|
|
|
|
len = strlen(name) + 1;
|
|
|
|
if (len > *lpSize)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_MORE_DATA);
|
|
|
|
*lpSize = len;
|
1999-01-03 13:48:29 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2001-11-20 21:26:54 +01:00
|
|
|
|
|
|
|
*lpSize = len;
|
1999-01-03 13:48:29 +01:00
|
|
|
strcpy(lpszName, name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-01-28 14:46:25 +01:00
|
|
|
/******************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetUserNameW [ADVAPI32.@]
|
1999-01-28 14:46:25 +01:00
|
|
|
*
|
2003-03-18 19:35:48 +01:00
|
|
|
* See GetUserNameA.
|
1999-01-03 13:48:29 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL WINAPI
|
|
|
|
GetUserNameW( LPWSTR lpszName, LPDWORD lpSize )
|
1999-01-03 13:48:29 +01:00
|
|
|
{
|
2002-08-27 20:30:53 +02:00
|
|
|
const char *name = wine_get_user_name();
|
|
|
|
DWORD len = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
|
1999-01-03 13:48:29 +01:00
|
|
|
|
2002-08-27 20:30:53 +02:00
|
|
|
if (len > *lpSize)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_MORE_DATA);
|
|
|
|
*lpSize = len;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*lpSize = len;
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, name, -1, lpszName, len );
|
|
|
|
return TRUE;
|
1999-01-03 13:48:29 +01:00
|
|
|
}
|
2002-04-19 02:04:27 +02:00
|
|
|
|
2002-06-15 01:32:46 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* GetCurrentHwProfileA [ADVAPI32.@]
|
2003-03-18 19:35:48 +01:00
|
|
|
*
|
|
|
|
* Get the current hardware profile.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pInfo [O] Destination for hardware profile information.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE. pInfo is updated with the hardware profile details.
|
|
|
|
* Failure: FALSE.
|
2002-06-15 01:32:46 +02:00
|
|
|
*/
|
2003-03-18 19:35:48 +01:00
|
|
|
BOOL WINAPI GetCurrentHwProfileA(LPHW_PROFILE_INFOA pInfo)
|
2002-06-15 01:32:46 +02:00
|
|
|
{
|
2003-03-18 19:35:48 +01:00
|
|
|
FIXME("(%p) semi-stub\n", pInfo);
|
|
|
|
pInfo->dwDockInfo = DOCKINFO_DOCKED;
|
|
|
|
strcpy(pInfo->szHwProfileGuid,"{12340001-1234-1234-1234-1233456789012}");
|
|
|
|
strcpy(pInfo->szHwProfileName,"Wine Profile");
|
2002-06-15 01:32:46 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-04-19 02:04:27 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* AbortSystemShutdownA [ADVAPI32.@]
|
|
|
|
*
|
2003-03-18 19:35:48 +01:00
|
|
|
* Stop a system shutdown if one is in progress.
|
|
|
|
*
|
2002-04-19 02:04:27 +02:00
|
|
|
* PARAMS
|
2003-03-18 19:35:48 +01:00
|
|
|
* lpMachineName [I] Name of machine to not shutdown.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE.
|
|
|
|
* Failure: FALSE.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* The Wine implementation of this function is a harmless stub.
|
2002-04-19 02:04:27 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI AbortSystemShutdownA( LPSTR lpMachineName )
|
|
|
|
{
|
|
|
|
TRACE("stub %s (harmless)\n", lpMachineName);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* AbortSystemShutdownW [ADVAPI32.@]
|
|
|
|
*
|
2003-03-18 19:35:48 +01:00
|
|
|
* See AbortSystemShutdownA.
|
2002-04-19 02:04:27 +02:00
|
|
|
*/
|
2003-09-06 01:08:26 +02:00
|
|
|
BOOL WINAPI AbortSystemShutdownW( LPWSTR lpMachineName )
|
2002-04-19 02:04:27 +02:00
|
|
|
{
|
|
|
|
TRACE("stub %s (harmless)\n", debugstr_w(lpMachineName));
|
|
|
|
return TRUE;
|
|
|
|
}
|
2003-08-12 20:53:14 +02:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* InitiateSystemShutdownExA [ADVAPI32.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InitiateSystemShutdownExA( LPSTR lpMachineName, LPSTR lpMessage,
|
|
|
|
DWORD dwTimeout, BOOL bForceAppsClosed, BOOL bRebootAfterShutdown,
|
|
|
|
DWORD dwReason)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %ld %d %d %ld\n", debugstr_a(lpMachineName),
|
|
|
|
debugstr_a(lpMessage), dwTimeout, bForceAppsClosed,
|
|
|
|
bRebootAfterShutdown, dwReason);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* InitiateSystemShutdownExA [ADVAPI32.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InitiateSystemShutdownExW( LPWSTR lpMachineName, LPWSTR lpMessage,
|
|
|
|
DWORD dwTimeout, BOOL bForceAppsClosed, BOOL bRebootAfterShutdown,
|
|
|
|
DWORD dwReason)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %ld %d %d %ld\n", debugstr_w(lpMachineName),
|
|
|
|
debugstr_w(lpMessage), dwTimeout, bForceAppsClosed,
|
|
|
|
bRebootAfterShutdown, dwReason);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2004-03-22 22:31:26 +01:00
|
|
|
|
|
|
|
DWORD WINAPI CommandLineFromMsiDescriptor(WCHAR *Descriptor, WCHAR *CommandLine,
|
|
|
|
DWORD *CommandLineLength)
|
|
|
|
{
|
|
|
|
FIXME("stub (%s)\n", debugstr_w(Descriptor));
|
|
|
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
|
|
|
}
|