kernel32: Add DeleteUmsThreadContext stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d4819eea0e
commit
bb4872bab0
|
@ -374,7 +374,7 @@
|
|||
@ stdcall DeleteTimerQueueEx (long long)
|
||||
@ stdcall DeleteTimerQueueTimer(long long long)
|
||||
@ stdcall -arch=x86_64 DeleteUmsCompletionList(ptr)
|
||||
# @ stub -arch=x86_64 DeleteUmsThreadContext
|
||||
@ stdcall -arch=x86_64 DeleteUmsThreadContext(ptr)
|
||||
@ stdcall DeleteVolumeMountPointA(str)
|
||||
@ stdcall DeleteVolumeMountPointW(wstr)
|
||||
# @ stub -arch=x86_64 DequeueUmsCompletionListItems
|
||||
|
|
|
@ -4262,6 +4262,16 @@ BOOL WINAPI DeleteUmsCompletionList(PUMS_COMPLETION_LIST list)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DeleteUmsThreadContext (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI DeleteUmsThreadContext(PUMS_CONTEXT ctx)
|
||||
{
|
||||
FIXME( "%p: stub\n", ctx );
|
||||
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* BaseFlushAppcompatCache (KERNEL32.@)
|
||||
*/
|
||||
|
|
|
@ -1912,6 +1912,7 @@ WINBASEAPI BOOL WINAPI DeleteTimerQueue(HANDLE);
|
|||
WINBASEAPI BOOL WINAPI DeleteTimerQueueEx(HANDLE,HANDLE);
|
||||
WINBASEAPI BOOL WINAPI DeleteTimerQueueTimer(HANDLE,HANDLE,HANDLE);
|
||||
WINBASEAPI BOOL WINAPI DeleteUmsCompletionList(PUMS_COMPLETION_LIST);
|
||||
WINBASEAPI BOOL WINAPI DeleteUmsThreadContext(PUMS_CONTEXT);
|
||||
WINBASEAPI BOOL WINAPI DeleteVolumeMountPointA(LPCSTR);
|
||||
WINBASEAPI BOOL WINAPI DeleteVolumeMountPointW(LPCWSTR);
|
||||
#define DeleteVolumeMountPoint WINELIB_NAME_AW(DeleteVolumeMountPoint)
|
||||
|
|
Loading…
Reference in New Issue