Commit 7dc790d8 authored by Alexandre Julliard's avatar Alexandre Julliard

Moved TaskFindHandle16 to toolhelp16.c.

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