reactos/dll/win32/profmap/profmap.c
Oleg Dubinskiy 5d81de7d5b
[REACTOS] Update email in all my copyrights (#4415)
Change it to Gmail, because Yandex disabled ua domain, which was used in my previous email.
2022-03-31 01:53:30 +02:00

78 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 */