mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
RtlConvertUlongToLargeInteger and RtlConvertLongToLargeInteger are obsolete NT routines that assign a 32-bit integer to LARGE_INTEGER.QuadPart. Replace all driver/DLL usages with inline .QuadPart assignments or standard C/C++ casts. This removes unnecessary function calls. CORE-19438