2006-06-05 07:01:10 +02:00
|
|
|
/*
|
|
|
|
* Implementation of userenv.dll
|
|
|
|
*
|
|
|
|
* Copyright 2006 Mike McCormack for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2008-04-30 03:19:05 +02:00
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
2006-06-05 07:01:10 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winreg.h"
|
2008-04-30 03:19:05 +02:00
|
|
|
#include "winternl.h"
|
2007-08-09 17:24:19 +02:00
|
|
|
#include "userenv.h"
|
2006-06-05 07:01:10 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL( userenv );
|
|
|
|
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
|
|
{
|
2006-09-29 01:19:00 +02:00
|
|
|
TRACE("%p %d %p\n", hinstDLL, fdwReason, lpvReserved);
|
2006-06-05 07:01:10 +02:00
|
|
|
|
|
|
|
switch (fdwReason)
|
|
|
|
{
|
|
|
|
case DLL_WINE_PREATTACH:
|
|
|
|
return FALSE; /* prefer native version */
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(hinstDLL);
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI CreateEnvironmentBlock( LPVOID* lpEnvironment,
|
|
|
|
HANDLE hToken, BOOL bInherit )
|
|
|
|
{
|
2008-04-30 03:19:05 +02:00
|
|
|
NTSTATUS r;
|
|
|
|
|
|
|
|
TRACE("%p %p %d\n", lpEnvironment, hToken, bInherit );
|
|
|
|
|
|
|
|
if (!lpEnvironment)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
r = RtlCreateEnvironment(bInherit, (WCHAR **)lpEnvironment);
|
|
|
|
if (r == STATUS_SUCCESS)
|
|
|
|
return TRUE;
|
2006-06-05 07:01:10 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-02-01 10:35:37 +01:00
|
|
|
BOOL WINAPI DestroyEnvironmentBlock(LPVOID lpEnvironment)
|
|
|
|
{
|
|
|
|
NTSTATUS r;
|
|
|
|
|
|
|
|
TRACE("%p\n", lpEnvironment);
|
|
|
|
r = RtlDestroyEnvironment(lpEnvironment);
|
|
|
|
if (r == STATUS_SUCCESS)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-02-20 15:34:49 +01:00
|
|
|
BOOL WINAPI ExpandEnvironmentStringsForUserA( HANDLE hToken, LPCSTR lpSrc,
|
|
|
|
LPSTR lpDest, DWORD dwSize )
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
TRACE("%p %s %p %d\n", hToken, debugstr_a(lpSrc), lpDest, dwSize);
|
|
|
|
|
|
|
|
ret = ExpandEnvironmentStringsA( lpSrc, lpDest, dwSize );
|
|
|
|
TRACE("<- %s\n", debugstr_a(lpDest));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI ExpandEnvironmentStringsForUserW( HANDLE hToken, LPCWSTR lpSrc,
|
|
|
|
LPWSTR lpDest, DWORD dwSize )
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
TRACE("%p %s %p %d\n", hToken, debugstr_w(lpSrc), lpDest, dwSize);
|
|
|
|
|
|
|
|
ret = ExpandEnvironmentStringsW( lpSrc, lpDest, dwSize );
|
|
|
|
TRACE("<- %s\n", debugstr_w(lpDest));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-06-05 07:01:10 +02:00
|
|
|
BOOL WINAPI GetUserProfileDirectoryA( HANDLE hToken, LPSTR lpProfileDir,
|
|
|
|
LPDWORD lpcchSize )
|
|
|
|
{
|
|
|
|
FIXME("%p %p %p\n", hToken, lpProfileDir, lpcchSize );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI GetUserProfileDirectoryW( HANDLE hToken, LPWSTR lpProfileDir,
|
|
|
|
LPDWORD lpcchSize )
|
|
|
|
{
|
|
|
|
FIXME("%p %p %p\n", hToken, lpProfileDir, lpcchSize );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI GetProfilesDirectoryA( LPSTR lpProfilesDir, LPDWORD lpcchSize )
|
|
|
|
{
|
|
|
|
FIXME("%p %p\n", lpProfilesDir, lpcchSize );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
|
|
|
|
{
|
|
|
|
FIXME("%p %p\n", lpProfilesDir, lpcchSize );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-01-31 23:04:11 +01:00
|
|
|
BOOL WINAPI GetAllUsersProfileDirectoryA( LPSTR lpProfileDir, LPDWORD lpcchSize )
|
|
|
|
{
|
|
|
|
FIXME("%p %p\n", lpProfileDir, lpcchSize);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI GetAllUsersProfileDirectoryW( LPWSTR lpProfileDir, LPDWORD lpcchSize )
|
|
|
|
{
|
|
|
|
FIXME("%p %p\n", lpProfileDir, lpcchSize);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-08-09 17:24:19 +02:00
|
|
|
BOOL WINAPI GetProfileType( DWORD *pdwFlags )
|
2006-06-27 15:28:45 +02:00
|
|
|
{
|
|
|
|
FIXME("%p\n", pdwFlags );
|
2007-04-20 21:59:06 +02:00
|
|
|
*pdwFlags = 0;
|
2006-06-27 15:28:45 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-06-05 07:01:10 +02:00
|
|
|
BOOL WINAPI LoadUserProfileA( HANDLE hToken, LPPROFILEINFOA lpProfileInfo )
|
|
|
|
{
|
|
|
|
FIXME("%p %p\n", hToken, lpProfileInfo );
|
|
|
|
lpProfileInfo->hProfile = HKEY_CURRENT_USER;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-03-19 12:01:11 +01:00
|
|
|
|
2009-07-26 01:52:58 +02:00
|
|
|
BOOL WINAPI LoadUserProfileW( HANDLE hToken, LPPROFILEINFOW lpProfileInfo )
|
|
|
|
{
|
|
|
|
FIXME("%p %p\n", hToken, lpProfileInfo );
|
|
|
|
lpProfileInfo->hProfile = HKEY_CURRENT_USER;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-03-19 12:01:11 +01:00
|
|
|
BOOL WINAPI RegisterGPNotification( HANDLE event, BOOL machine )
|
|
|
|
{
|
|
|
|
FIXME("%p %d\n", event, machine );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI UnregisterGPNotification( HANDLE event )
|
|
|
|
{
|
|
|
|
FIXME("%p\n", event );
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-09-20 23:58:59 +02:00
|
|
|
|
|
|
|
BOOL WINAPI UnloadUserProfile( HANDLE hToken, HANDLE hProfile )
|
|
|
|
{
|
|
|
|
FIXME("(%p, %p): stub\n", hToken, hProfile);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-03-02 13:35:26 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* USERENV.138
|
|
|
|
*
|
|
|
|
* Create .lnk file
|
|
|
|
*
|
|
|
|
* PARAMETERS
|
|
|
|
* int csidl [in] well-known directory location to create link in
|
|
|
|
* LPCSTR lnk_dir [in] directory (relative to directory specified by csidl) to create link in
|
|
|
|
* LPCSTR lnk_filename [in] filename of the link file without .lnk extension
|
|
|
|
* LPCSTR lnk_target [in] file/directory pointed to by link
|
|
|
|
* LPCSTR lnk_iconfile [in] link icon resource filename
|
|
|
|
* DWORD lnk_iconid [in] link icon resource id in file referred by lnk_iconfile
|
|
|
|
* LPCSTR work_directory [in] link target's work directory
|
|
|
|
* WORD hotkey [in] link hotkey (virtual key id)
|
|
|
|
* DWORD win_state [in] initial window size (SW_SHOWMAXIMIZED to start maximized,
|
|
|
|
* SW_SHOWMINNOACTIVE to start minimized, everything else is default state)
|
|
|
|
* LPCSTR comment [in] comment - link's comment
|
|
|
|
* LPCSTR loc_filename_resfile [in] resource file which holds localized filename for this link file
|
|
|
|
* DWORD loc_filename_resid [in] resource id for this link file's localized filename
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE: Link file was successfully created
|
|
|
|
* FALSE: Link file was not created
|
|
|
|
*/
|
|
|
|
BOOL WINAPI USERENV_138( int csidl, LPCSTR lnk_dir, LPCSTR lnk_filename,
|
|
|
|
LPCSTR lnk_target, LPCSTR lnk_iconfile, DWORD lnk_iconid,
|
|
|
|
LPCSTR work_directory, WORD hotkey, DWORD win_state, LPCSTR comment,
|
|
|
|
LPCSTR loc_filename_resfile, DWORD loc_filename_resid)
|
|
|
|
{
|
|
|
|
FIXME("(%d,%s,%s,%s,%s,%d,%s,0x%x,%d,%s,%s,%d) - stub\n", csidl, debugstr_a(lnk_dir),
|
|
|
|
debugstr_a(lnk_filename), debugstr_a(lnk_target), debugstr_a(lnk_iconfile),
|
|
|
|
lnk_iconid, debugstr_a(work_directory), hotkey, win_state,
|
|
|
|
debugstr_a(comment), debugstr_a(loc_filename_resfile), loc_filename_resid );
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|