kernel32: Add SetUmsThreadInformation 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
8af9344519
commit
408500115d
|
@ -1464,7 +1464,7 @@
|
|||
@ stdcall SetThreadpoolWait(ptr long ptr)
|
||||
@ stdcall SetTimeZoneInformation(ptr)
|
||||
@ stub SetTimerQueueTimer
|
||||
# @ stub -arch=x86_64 SetUmsThreadInformation
|
||||
@ stdcall -arch=x86_64 SetUmsThreadInformation(ptr long ptr long)
|
||||
@ stdcall SetUnhandledExceptionFilter(ptr)
|
||||
@ stdcall SetUserGeoID(long)
|
||||
@ stub SetVDMCurrentDirectories
|
||||
|
|
|
@ -4343,6 +4343,17 @@ BOOL WINAPI QueryUmsThreadInformation(PUMS_CONTEXT ctx, UMS_THREAD_INFO_CLASS cl
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetUmsThreadInformation (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI SetUmsThreadInformation(PUMS_CONTEXT ctx, UMS_THREAD_INFO_CLASS class,
|
||||
void *buf, ULONG length)
|
||||
{
|
||||
FIXME( "%p,%08x,%p,%08x: stub\n", ctx, class, buf, length );
|
||||
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* BaseFlushAppcompatCache (KERNEL32.@)
|
||||
*/
|
||||
|
|
|
@ -2620,6 +2620,7 @@ WINBASEAPI BOOL WINAPI SetVolumeMountPointW(LPCWSTR,LPCWSTR);
|
|||
#define SetVolumeMountPoint WINELIB_NAME_AW(SetVolumeMountPoint)
|
||||
WINBASEAPI BOOL WINAPI SetWaitableTimer(HANDLE,const LARGE_INTEGER*,LONG,PTIMERAPCROUTINE,LPVOID,BOOL);
|
||||
WINBASEAPI BOOL WINAPI SetWaitableTimerEx(HANDLE,const LARGE_INTEGER*,LONG,PTIMERAPCROUTINE,LPVOID,REASON_CONTEXT*,ULONG);
|
||||
WINBASEAPI BOOL WINAPI SetUmsThreadInformation(PUMS_CONTEXT,UMS_THREAD_INFO_CLASS,void *,ULONG);
|
||||
WINBASEAPI BOOL WINAPI SetupComm(HANDLE,DWORD,DWORD);
|
||||
WINBASEAPI DWORD WINAPI SignalObjectAndWait(HANDLE,HANDLE,DWORD,BOOL);
|
||||
WINBASEAPI DWORD WINAPI SizeofResource(HMODULE,HRSRC);
|
||||
|
|
Loading…
Reference in New Issue