mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
5d81de7d5b
Change it to Gmail, because Yandex disabled ua domain, which was used in my previous email.
77 lines
1.6 KiB
C
77 lines
1.6 KiB
C
/*
|
|
* PROJECT: ReactOS system libraries
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* FILE: dll/win32/profmap/profmap.c
|
|
* PURPOSE: ReactOS User Profile Mapping API
|
|
* COPYRIGHT: Copyright 2019 Oleg Dubinskiy (oleg.dubinskij30@gmail.com)
|
|
*/
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* PUBLIC FUNCTIONS ***********************************************************/
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOL
|
|
WINAPI
|
|
DllMain(HINSTANCE hinstDll,
|
|
DWORD dwReason,
|
|
LPVOID reserved)
|
|
{
|
|
switch (dwReason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
DisableThreadLibraryCalls(hinstDll);
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* @unimplemented
|
|
*
|
|
* NOTES:
|
|
* Based on the documentation from:
|
|
* http://sendmail2.blogspot.com/2012/11/windows-small-business-server-2008_7553.html?view=magazine
|
|
*/
|
|
BOOL
|
|
WINAPI
|
|
RemapAndMoveUserA(IN LPCSTR pComputer,
|
|
IN DWORD dwFlags,
|
|
IN LPCSTR pCurrentUser,
|
|
IN LPCSTR pNewUser)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return FALSE;
|
|
}
|
|
|
|
/*
|
|
* @unimplemented
|
|
*
|
|
* NOTES:
|
|
* Based on the documentation from:
|
|
* http://sendmail2.blogspot.com/2012/11/windows-small-business-server-2008_7553.html?view=magazine
|
|
*/
|
|
BOOL
|
|
WINAPI
|
|
RemapAndMoveUserW(IN LPCWSTR pComputer,
|
|
IN DWORD dwFlags,
|
|
IN LPCWSTR pCurrentUser,
|
|
IN LPCWSTR pNewUser)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return FALSE;
|
|
}
|
|
|
|
/* EOF */
|