#ifndef _NTRTL_H
DECLSPEC_DEPRECATED
NTSYSAPI
LARGE_INTEGER
NTAPI
RtlConvertUlongToLargeInteger(
_In_ ULONG UnsignedInteger
);
View code on GitHub// wdm.h
DECLSPEC_DEPRECATED_DDK_WINXP LARGE_INTEGER NTAPI_INLINE RtlConvertUlongToLargeInteger(
[in] ULONG UnsignedInteger
);
View the official Windows Driver Kit DDI referenceNo description available.
The RtlConvertUlongToLargeInteger routine converts the input unsigned integer to a signed large integer. For Windows XP and later versions of Windows, do not use this routine; use the native support for __int64.
UnsignedInteger [in]Specifies a value of type ULONG.
RtlConvertUlongToLargeInteger returns the converted large integer.