kernel32: Move the 16-bit handle functions to kernel16.c.
This commit is contained in:
parent
b6e0b3428d
commit
6404817de4
|
@ -352,6 +352,22 @@ DWORD WINAPI GetCurrentProcessId16(void)
|
|||
return GetCurrentProcessId();
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* 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)
|
||||
*/
|
||||
|
|
|
@ -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) CloseW32Handle
|
||||
475 pascal -ret16 GetTEBSelectorFS() GetTEBSelectorFS16
|
||||
476 pascal ConvertToGlobalHandle(long) ConvertToGlobalHandle
|
||||
476 pascal ConvertToGlobalHandle(long) ConvertToGlobalHandle16
|
||||
477 stub WOAFullScreen
|
||||
478 stub WOATerminateProcess
|
||||
479 pascal KERNEL_479(long) VWin32_EventSet # ???
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue