Commit 611eb3fa authored by Robert Reif's avatar Robert Reif Committed by Alexandre Julliard

kernel32: Add IsWow64Process.

parent 96b6d335
......@@ -736,7 +736,7 @@
@ stdcall IsValidLanguageGroup(long long)
@ stdcall IsValidLocale(long long)
# @ stub IsValidUILanguage
# @ stub IsWow64Process
@ stdcall IsWow64Process(ptr ptr)
@ stdcall -i386 -register K32Thk1632Epilog()
@ stdcall -i386 -register K32Thk1632Prolog()
@ stdcall LCMapStringA(long long str long ptr long)
......
......@@ -2793,6 +2793,17 @@ DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
}
/**********************************************************************
* IsWow64Process (KERNEL32.@)
*/
BOOL WINAPI IsWow64Process(HANDLE hProcess, PBOOL Wow64Process)
{
FIXME("(%p %p) stub!\n", hProcess, Wow64Process);
*Wow64Process = FALSE;
return TRUE;
}
/***********************************************************************
* GetCurrentProcess (KERNEL32.@)
*
......
......@@ -1747,6 +1747,7 @@ BOOL WINAPI IsValidAcl(PACL);
BOOL WINAPI IsValidSecurityDescriptor(PSECURITY_DESCRIPTOR);
BOOL WINAPI IsValidSid(PSID);
BOOL WINAPI IsWellKnownSid(PSID,WELL_KNOWN_SID_TYPE);
BOOL WINAPI IsWow64Process(HANDLE,PBOOL);
BOOL WINAPI ImpersonateLoggedOnUser(HANDLE);
BOOL WINAPI ImpersonateNamedPipeClient(HANDLE);
BOOL WINAPI ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment