#ifndef _NTRTL_H
DECLSPEC_DEPRECATED
NTSYSAPI
LARGE_INTEGER
NTAPI
RtlConvertLongToLargeInteger(
_In_ LONG SignedInteger
);
View code on GitHub// wdm.h
DECLSPEC_DEPRECATED_DDK_WINXP LARGE_INTEGER NTAPI_INLINE RtlConvertLongToLargeInteger(
[in] LONG SignedInteger
);
View the official Windows Driver Kit DDI referenceNo description available.
The RtlConvertLongToLargeInteger routine converts the input signed integer to a signed large integer.
SignedInteger [in]Specifies an integer of type LONG.
RtlConvertLongToLargeInteger returns the large integer result.
This routine is not supported in Windows XP. Use native support for __int64 instead.