mirror of
https://github.com/reactos/reactos.git
synced 2026-09-10 11:20:24 +08: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