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
6404817d
Commit
6404817d
authored
Oct 07, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Move the 16-bit handle functions to kernel16.c.
parent
b6e0b342
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
4 deletions
+18
-4
kernel16.c
dlls/kernel32/kernel16.c
+16
-0
krnl386.exe.spec
dlls/kernel32/krnl386.exe.spec
+2
-2
process.c
dlls/kernel32/process.c
+0
-2
No files found.
dlls/kernel32/kernel16.c
View file @
6404817d
...
...
@@ -353,6 +353,22 @@ DWORD WINAPI GetCurrentProcessId16(void)
}
/*********************************************************************
* CloseW32Handle (KERNEL.474)
*/
BOOL
WINAPI
CloseW32Handle
(
HANDLE
handle
)
{
return
CloseHandle
(
handle
);
}
/***********************************************************************
* ConvertToGlobalHandle (KERNEL.476)
*/
HANDLE
WINAPI
ConvertToGlobalHandle16
(
HANDLE
handle
)
{
return
ConvertToGlobalHandle
(
handle
);
}
/*********************************************************************
* MapProcessHandle (KERNEL.483)
*/
DWORD
WINAPI
MapProcessHandle
(
HANDLE
hProcess
)
...
...
dlls/kernel32/krnl386.exe.spec
View file @
6404817d
...
...
@@ -376,9 +376,9 @@
471 pascal GetCurrentProcessId() GetCurrentProcessId16
472 pascal -register MapHInstLS() MapHInstLS16
473 pascal -register MapHInstSL() MapHInstSL16
474 pascal CloseW32Handle(long) CloseHandle
474 pascal CloseW32Handle(long) Close
W32
Handle
475 pascal -ret16 GetTEBSelectorFS() GetTEBSelectorFS16
476 pascal ConvertToGlobalHandle(long) ConvertToGlobalHandle
476 pascal ConvertToGlobalHandle(long) ConvertToGlobalHandle
16
477 stub WOAFullScreen
478 stub WOATerminateProcess
479 pascal KERNEL_479(long) VWin32_EventSet # ???
...
...
dlls/kernel32/process.c
View file @
6404817d
...
...
@@ -2722,7 +2722,6 @@ DWORD WINAPI GetProcessId( HANDLE hProcess )
/*********************************************************************
* CloseW32Handle (KERNEL.474)
* CloseHandle (KERNEL32.@)
*
* Closes a handle.
...
...
@@ -2830,7 +2829,6 @@ BOOL WINAPI DuplicateHandle( HANDLE source_process, HANDLE source,
/***********************************************************************
* ConvertToGlobalHandle (KERNEL.476)
* ConvertToGlobalHandle (KERNEL32.@)
*/
HANDLE
WINAPI
ConvertToGlobalHandle
(
HANDLE
hSrc
)
...
...
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