kernel32: Add GetCurrentUmsThread 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
1e45144570
commit
c9cb63bed6
|
@ -637,7 +637,7 @@
|
|||
@ stdcall GetCurrentProcessorNumberEx(ptr) ntdll.RtlGetCurrentProcessorNumberEx
|
||||
@ stdcall -norelay GetCurrentThread()
|
||||
@ stdcall -norelay GetCurrentThreadId()
|
||||
# @ stub -arch=x86_64 GetCurrentUmsThread
|
||||
@ stdcall -arch=x86_64 GetCurrentUmsThread()
|
||||
@ stdcall GetDateFormatA(long long ptr str ptr long)
|
||||
@ stdcall GetDateFormatEx(wstr long ptr wstr ptr long wstr)
|
||||
@ stdcall GetDateFormatW(long long ptr wstr ptr long)
|
||||
|
|
|
@ -4302,6 +4302,16 @@ BOOL WINAPI ExecuteUmsThread(PUMS_CONTEXT ctx)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetCurrentUmsThread (KERNEL32.@)
|
||||
*/
|
||||
PUMS_CONTEXT WINAPI GetCurrentUmsThread(void)
|
||||
{
|
||||
FIXME( "stub\n" );
|
||||
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* BaseFlushAppcompatCache (KERNEL32.@)
|
||||
*/
|
||||
|
|
|
@ -2073,6 +2073,7 @@ WINBASEAPI DWORD WINAPI GetCurrentProcessorNumber(void);
|
|||
WINBASEAPI VOID WINAPI GetCurrentProcessorNumberEx(PPROCESSOR_NUMBER);
|
||||
WINBASEAPI HANDLE WINAPI GetCurrentThread(void);
|
||||
#define GetCurrentTime() GetTickCount()
|
||||
WINBASEAPI PUMS_CONTEXT WINAPI GetCurrentUmsThread(void);
|
||||
WINBASEAPI BOOL WINAPI GetDefaultCommConfigA(LPCSTR,LPCOMMCONFIG,LPDWORD);
|
||||
WINBASEAPI BOOL WINAPI GetDefaultCommConfigW(LPCWSTR,LPCOMMCONFIG,LPDWORD);
|
||||
#define GetDefaultCommConfig WINELIB_NAME_AW(GetDefaultCommConfig)
|
||||
|
|
Loading…
Reference in New Issue