mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 00:45:49 +00:00
[ADVAPI32]
* Move CreateProcessWithLogonW() from logon.c to security.c. CORE-8540 svn path=/trunk/; revision=64977
This commit is contained in:
parent
e4cff1c66a
commit
2d07e343d6
2 changed files with 24 additions and 24 deletions
|
@ -215,30 +215,6 @@ CreateProcessAsUserW(HANDLE hToken,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
BOOL WINAPI
|
|
||||||
CreateProcessWithLogonW(LPCWSTR lpUsername,
|
|
||||||
LPCWSTR lpDomain,
|
|
||||||
LPCWSTR lpPassword,
|
|
||||||
DWORD dwLogonFlags,
|
|
||||||
LPCWSTR lpApplicationName,
|
|
||||||
LPWSTR lpCommandLine,
|
|
||||||
DWORD dwCreationFlags,
|
|
||||||
LPVOID lpEnvironment,
|
|
||||||
LPCWSTR lpCurrentDirectory,
|
|
||||||
LPSTARTUPINFOW lpStartupInfo,
|
|
||||||
LPPROCESS_INFORMATION lpProcessInformation)
|
|
||||||
{
|
|
||||||
FIXME("%s %s %s 0x%08x %s %s 0x%08x %p %s %p %p stub\n", debugstr_w(lpUsername), debugstr_w(lpDomain),
|
|
||||||
debugstr_w(lpPassword), dwLogonFlags, debugstr_w(lpApplicationName),
|
|
||||||
debugstr_w(lpCommandLine), dwCreationFlags, lpEnvironment, debugstr_w(lpCurrentDirectory),
|
|
||||||
lpStartupInfo, lpProcessInformation);
|
|
||||||
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -2428,6 +2428,30 @@ ConvertSidToStringSidA(PSID Sid,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOL WINAPI
|
||||||
|
CreateProcessWithLogonW(LPCWSTR lpUsername,
|
||||||
|
LPCWSTR lpDomain,
|
||||||
|
LPCWSTR lpPassword,
|
||||||
|
DWORD dwLogonFlags,
|
||||||
|
LPCWSTR lpApplicationName,
|
||||||
|
LPWSTR lpCommandLine,
|
||||||
|
DWORD dwCreationFlags,
|
||||||
|
LPVOID lpEnvironment,
|
||||||
|
LPCWSTR lpCurrentDirectory,
|
||||||
|
LPSTARTUPINFOW lpStartupInfo,
|
||||||
|
LPPROCESS_INFORMATION lpProcessInformation)
|
||||||
|
{
|
||||||
|
FIXME("%s %s %s 0x%08x %s %s 0x%08x %p %s %p %p stub\n", debugstr_w(lpUsername), debugstr_w(lpDomain),
|
||||||
|
debugstr_w(lpPassword), dwLogonFlags, debugstr_w(lpApplicationName),
|
||||||
|
debugstr_w(lpCommandLine), dwCreationFlags, lpEnvironment, debugstr_w(lpCurrentDirectory),
|
||||||
|
lpStartupInfo, lpProcessInformation);
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
WINAPI
|
WINAPI
|
||||||
CreateProcessWithTokenW(IN HANDLE hToken,
|
CreateProcessWithTokenW(IN HANDLE hToken,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue