Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
611eb3fa
Commit
611eb3fa
authored
Aug 11, 2006
by
Robert Reif
Committed by
Alexandre Julliard
Aug 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add IsWow64Process.
parent
96b6d335
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
process.c
dlls/kernel/process.c
+11
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel/kernel32.spec
View file @
611eb3fa
...
...
@@ -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)
...
...
dlls/kernel/process.c
View file @
611eb3fa
...
...
@@ -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.@)
*
...
...
include/winbase.h
View file @
611eb3fa
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment