RtlConvertLongToLargeInteger - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

DECLSPEC_DEPRECATED
NTSYSAPI
LARGE_INTEGER
NTAPI
RtlConvertLongToLargeInteger(
    _In_ LONG SignedInteger
    );

#endif

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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-rtlconvertlongtolargeinteger)

RtlConvertLongToLargeInteger function

Description

The RtlConvertLongToLargeInteger routine converts the input signed integer to a signed large integer.

Parameters

SignedInteger [in]

Specifies an integer of type LONG.

Return value

RtlConvertLongToLargeInteger returns the large integer result.

Remarks

This routine is not supported in Windows XP. Use native support for __int64 instead.