RtlWow64GetThreadContext - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H
#ifdef _WIN64
#ifdef PHNT_INLINE_TYPEDEFS

FORCEINLINE
NTSTATUS
NTAPI
RtlWow64GetThreadContext(
    _In_ HANDLE ThreadHandle,
    _Inout_ PWOW64_CONTEXT ThreadContext
    )
{
    return NtQueryInformationThread(
        ThreadHandle,
        ThreadWow64Context,
        ThreadContext,
        sizeof(WOW64_CONTEXT),
        NULL
        );
}

#endif
#endif
#endif

View code on GitHub
#ifndef _NTRTL_H
#ifdef _WIN64
#ifdef PHNT_INLINE_TYPEDEFS
// ...
#else

// rev
NTSYSAPI
NTSTATUS
NTAPI
RtlWow64GetThreadContext(
    _In_ HANDLE ThreadHandle,
    _Inout_ PWOW64_CONTEXT ThreadContext
    );

#endif
#endif
#endif

View code on GitHub

No description available.