reactos/dll/win32/profmap/profmap.c
Oleg Dubinskiy 70b6658af8
[PROFMAP] Initial implementation (#2119)
Co-Authored-By: Stanislav Motylkov <x86corez@gmail.com>
2020-04-26 21:15:21 +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.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 */