RtlWow64SetThreadContext - 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
RtlWow64SetThreadContext(
    _In_ HANDLE ThreadHandle,
    _In_ PWOW64_CONTEXT ThreadContext
    )
{
    return NtSetInformationThread(
        ThreadHandle,
        ThreadWow64Context,
        ThreadContext,
        sizeof(WOW64_CONTEXT)
        );
}

#endif
#endif
#endif

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

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

#endif
#endif
#endif

View code on GitHub

No description available.