kernel32: Add a stub for GetCurrentProcessorNumberEx.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Sebastian Lackner <sebastian@fds-team.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ad2405daa4
commit
132ff59b3e
|
@ -12,7 +12,7 @@
|
||||||
@ stdcall -norelay GetCurrentProcess() kernel32.GetCurrentProcess
|
@ stdcall -norelay GetCurrentProcess() kernel32.GetCurrentProcess
|
||||||
@ stdcall -norelay GetCurrentProcessId() kernel32.GetCurrentProcessId
|
@ stdcall -norelay GetCurrentProcessId() kernel32.GetCurrentProcessId
|
||||||
@ stdcall GetCurrentProcessorNumber() kernel32.GetCurrentProcessorNumber
|
@ stdcall GetCurrentProcessorNumber() kernel32.GetCurrentProcessorNumber
|
||||||
@ stub GetCurrentProcessorNumberEx
|
@ stdcall GetCurrentProcessorNumberEx(ptr) kernel32.GetCurrentProcessorNumberEx
|
||||||
@ stdcall -norelay GetCurrentThread() kernel32.GetCurrentThread
|
@ stdcall -norelay GetCurrentThread() kernel32.GetCurrentThread
|
||||||
@ stdcall -norelay GetCurrentThreadId() kernel32.GetCurrentThreadId
|
@ stdcall -norelay GetCurrentThreadId() kernel32.GetCurrentThreadId
|
||||||
@ stub GetCurrentThreadStackLimits
|
@ stub GetCurrentThreadStackLimits
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
@ stdcall -norelay GetCurrentProcess() kernel32.GetCurrentProcess
|
@ stdcall -norelay GetCurrentProcess() kernel32.GetCurrentProcess
|
||||||
@ stdcall -norelay GetCurrentProcessId() kernel32.GetCurrentProcessId
|
@ stdcall -norelay GetCurrentProcessId() kernel32.GetCurrentProcessId
|
||||||
@ stdcall GetCurrentProcessorNumber() kernel32.GetCurrentProcessorNumber
|
@ stdcall GetCurrentProcessorNumber() kernel32.GetCurrentProcessorNumber
|
||||||
@ stub GetCurrentProcessorNumberEx
|
@ stdcall GetCurrentProcessorNumberEx(ptr) kernel32.GetCurrentProcessorNumberEx
|
||||||
@ stdcall -norelay GetCurrentThread() kernel32.GetCurrentThread
|
@ stdcall -norelay GetCurrentThread() kernel32.GetCurrentThread
|
||||||
@ stdcall -norelay GetCurrentThreadId() kernel32.GetCurrentThreadId
|
@ stdcall -norelay GetCurrentThreadId() kernel32.GetCurrentThreadId
|
||||||
@ stub GetCurrentThreadStackLimits
|
@ stub GetCurrentThreadStackLimits
|
||||||
|
|
|
@ -632,7 +632,7 @@
|
||||||
@ stdcall -norelay GetCurrentProcess()
|
@ stdcall -norelay GetCurrentProcess()
|
||||||
@ stdcall -norelay GetCurrentProcessId()
|
@ stdcall -norelay GetCurrentProcessId()
|
||||||
@ stdcall GetCurrentProcessorNumber() ntdll.NtGetCurrentProcessorNumber
|
@ stdcall GetCurrentProcessorNumber() ntdll.NtGetCurrentProcessorNumber
|
||||||
# @ stub GetCurrentProcessorNumberEx
|
@ stdcall GetCurrentProcessorNumberEx(ptr) ntdll.RtlGetCurrentProcessorNumberEx
|
||||||
@ stdcall -norelay GetCurrentThread()
|
@ stdcall -norelay GetCurrentThread()
|
||||||
@ stdcall -norelay GetCurrentThreadId()
|
@ stdcall -norelay GetCurrentThreadId()
|
||||||
# @ stub -arch=x86_64 GetCurrentUmsThread
|
# @ stub -arch=x86_64 GetCurrentUmsThread
|
||||||
|
|
|
@ -627,6 +627,7 @@
|
||||||
@ stdcall RtlGetControlSecurityDescriptor(ptr ptr ptr)
|
@ stdcall RtlGetControlSecurityDescriptor(ptr ptr ptr)
|
||||||
@ stdcall RtlGetCurrentDirectory_U(long ptr)
|
@ stdcall RtlGetCurrentDirectory_U(long ptr)
|
||||||
@ stdcall RtlGetCurrentPeb()
|
@ stdcall RtlGetCurrentPeb()
|
||||||
|
@ stdcall RtlGetCurrentProcessorNumberEx(ptr)
|
||||||
@ stdcall RtlGetCurrentTransaction()
|
@ stdcall RtlGetCurrentTransaction()
|
||||||
@ stdcall RtlGetDaclSecurityDescriptor(ptr ptr ptr ptr)
|
@ stdcall RtlGetDaclSecurityDescriptor(ptr ptr ptr ptr)
|
||||||
@ stub RtlGetElementGenericTable
|
@ stub RtlGetElementGenericTable
|
||||||
|
|
|
@ -1584,3 +1584,14 @@ BOOL WINAPI RtlSetCurrentTransaction(HANDLE new_transaction)
|
||||||
FIXME("(%p) :stub\n", new_transaction);
|
FIXME("(%p) :stub\n", new_transaction);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* RtlGetCurrentProcessorNumberEx [NTDLL.@]
|
||||||
|
*/
|
||||||
|
void WINAPI RtlGetCurrentProcessorNumberEx(PROCESSOR_NUMBER *processor)
|
||||||
|
{
|
||||||
|
FIXME("(%p) :semi-stub\n", processor);
|
||||||
|
processor->Group = 0;
|
||||||
|
processor->Number = NtGetCurrentProcessorNumber();
|
||||||
|
processor->Reserved = 0;
|
||||||
|
}
|
||||||
|
|
|
@ -2143,6 +2143,7 @@ NTSYSAPI NTSTATUS WINAPI NtFlushWriteBuffer(VOID);
|
||||||
NTSYSAPI NTSTATUS WINAPI NtFreeVirtualMemory(HANDLE,PVOID*,SIZE_T*,ULONG);
|
NTSYSAPI NTSTATUS WINAPI NtFreeVirtualMemory(HANDLE,PVOID*,SIZE_T*,ULONG);
|
||||||
NTSYSAPI NTSTATUS WINAPI NtFsControlFile(HANDLE,HANDLE,PIO_APC_ROUTINE,PVOID,PIO_STATUS_BLOCK,ULONG,PVOID,ULONG,PVOID,ULONG);
|
NTSYSAPI NTSTATUS WINAPI NtFsControlFile(HANDLE,HANDLE,PIO_APC_ROUTINE,PVOID,PIO_STATUS_BLOCK,ULONG,PVOID,ULONG,PVOID,ULONG);
|
||||||
NTSYSAPI NTSTATUS WINAPI NtGetContextThread(HANDLE,CONTEXT*);
|
NTSYSAPI NTSTATUS WINAPI NtGetContextThread(HANDLE,CONTEXT*);
|
||||||
|
NTSYSAPI ULONG WINAPI NtGetCurrentProcessorNumber(void);
|
||||||
NTSYSAPI NTSTATUS WINAPI NtGetPlugPlayEvent(ULONG,ULONG,PVOID,ULONG);
|
NTSYSAPI NTSTATUS WINAPI NtGetPlugPlayEvent(ULONG,ULONG,PVOID,ULONG);
|
||||||
NTSYSAPI ULONG WINAPI NtGetTickCount(VOID);
|
NTSYSAPI ULONG WINAPI NtGetTickCount(VOID);
|
||||||
NTSYSAPI NTSTATUS WINAPI NtGetWriteWatch(HANDLE,ULONG,PVOID,SIZE_T,PVOID*,ULONG_PTR*,ULONG*);
|
NTSYSAPI NTSTATUS WINAPI NtGetWriteWatch(HANDLE,ULONG,PVOID,SIZE_T,PVOID*,ULONG_PTR*,ULONG*);
|
||||||
|
|
Loading…
Reference in New Issue