mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
70b6658af8
Co-Authored-By: Stanislav Motylkov <x86corez@gmail.com>
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.dubinskij2013@yandex.ua)
|
|
*/
|
|
|
|
/* 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 */
|