Moved TaskFindHandle16 to toolhelp16.c.

This commit is contained in:
Alexandre Julliard 2005-08-29 10:26:48 +00:00
parent f484a6b959
commit 7dc790d877
2 changed files with 11 additions and 10 deletions

View File

@ -1511,16 +1511,6 @@ BOOL16 WINAPI TaskNext16( TASKENTRY *lpte )
} }
/***********************************************************************
* TaskFindHandle (TOOLHELP.65)
*/
BOOL16 WINAPI TaskFindHandle16( TASKENTRY *lpte, HTASK16 hTask )
{
lpte->hNext = hTask;
return TaskNext16( lpte );
}
typedef INT (WINAPI *MessageBoxA_funcptr)(HWND hWnd, LPCSTR text, LPCSTR title, UINT type); typedef INT (WINAPI *MessageBoxA_funcptr)(HWND hWnd, LPCSTR text, LPCSTR title, UINT type);
/************************************************************************** /**************************************************************************

View File

@ -54,6 +54,17 @@ static int nrofnotifys = 0;
static FARPROC16 HookNotify = NULL; static FARPROC16 HookNotify = NULL;
/***********************************************************************
* TaskFindHandle (TOOLHELP.65)
*/
BOOL16 WINAPI TaskFindHandle16( TASKENTRY *lpte, HTASK16 hTask )
{
lpte->hNext = hTask;
return TaskNext16( lpte );
}
/*********************************************************************** /***********************************************************************
* NotifyRegister (TOOLHELP.73) * NotifyRegister (TOOLHELP.73)
*/ */