mirror of
https://github.com/reactos/reactos.git
synced 2026-05-22 23:30:07 +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