[Kernel] Implemented: ObLookupAnyThreadByThreadId

This commit is contained in:
Gliniak 2023-06-12 07:32:25 +02:00
parent 1ae524a8d5
commit 4053f7bb0e
1 changed files with 6 additions and 0 deletions

View File

@ -84,6 +84,12 @@ dword_result_t ObLookupThreadByThreadId_entry(dword_t thread_id,
}
DECLARE_XBOXKRNL_EXPORT1(ObLookupThreadByThreadId, kNone, kImplemented);
dword_result_t ObLookupAnyThreadByThreadId_entry(dword_t thread_id,
lpdword_t out_object_ptr) {
return ObLookupThreadByThreadId_entry(thread_id, out_object_ptr);
}
DECLARE_XBOXKRNL_EXPORT1(ObLookupAnyThreadByThreadId, kNone, kImplemented);
template <uint32_t ordinal>
static constexpr uint32_t object_type_id_for_ordinal_v =
0xD000BEEF | (ordinal << 16);