Implementation stub for QueueUserWorkItem.

oldstable
Hans Leidekker 2005-02-21 21:02:12 +00:00 committed by Alexandre Julliard
parent a6a91a440b
commit b49d92d84e
2 changed files with 9 additions and 1 deletions

View File

@ -675,7 +675,7 @@
@ stdcall QueryPerformanceCounter(ptr)
@ stdcall QueryPerformanceFrequency(ptr)
@ stdcall QueueUserAPC(ptr long long)
@ stub QueueUserWorkItem
@ stdcall QueueUserWorkItem(ptr ptr long)
@ stdcall RaiseException(long long long ptr)
@ stdcall ReadConsoleA(long ptr long ptr ptr)
@ stdcall ReadConsoleInputA(long ptr long ptr)

View File

@ -549,6 +549,14 @@ DWORD WINAPI QueueUserAPC( PAPCFUNC func, HANDLE hthread, ULONG_PTR data )
return !status;
}
/***********************************************************************
* QueueUserWorkItem (KERNEL32.@)
*/
BOOL WINAPI QueueUserWorkItem( LPTHREAD_START_ROUTINE Function, PVOID Context, ULONG Flags )
{
FIXME("(%p,%p,0x%08lx): stub\n", Function, Context, Flags);
return FALSE;
}
/**********************************************************************
* GetThreadTimes [KERNEL32.@] Obtains timing information.