#ifndef _NTRTL_H
#if defined(_WIN64)
#if defined(_PHLIB_)
FORCEINLINE
NTSTATUS
NTAPI
RtlWow64SetThreadContext(
_In_ HANDLE ThreadHandle,
_In_ PWOW64_CONTEXT ThreadContext
)
{
return NtSetInformationThread(
ThreadHandle,
ThreadWow64Context,
ThreadContext,
sizeof(WOW64_CONTEXT)
);
}
View code on GitHub
#ifndef _NTRTL_H
#if defined(_WIN64)
#if defined(_PHLIB_)
// ...
#else
// rev
NTSYSAPI
NTSTATUS
NTAPI
RtlWow64SetThreadContext(
_In_ HANDLE ThreadHandle,
_In_ PWOW64_CONTEXT ThreadContext
);
View code on GitHub
No description available.