#ifndef _NTINTSAFE_H_INCLUDED_
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM | WINAPI_PARTITION_GAMES)
//
// ULONG_PTR -> UINT_PTR conversion
//
_Must_inspect_result_
__inline
NTSTATUS
RtlULongPtrToUIntPtr(
_In_ ULONG_PTR ulOperand,
_Out_ _Deref_out_range_(==, ulOperand) UINT_PTR* puResult)
{
*puResult = (UINT_PTR)ulOperand;
return STATUS_SUCCESS;
}
View code on GitHub
No description available.