Rename RtlInterlockedDecrementLongPtr() to follow routines naming convention

Este commit está contenido en:
2023-10-29 12:21:19 +01:00
padre cf7c467637
commit 3f2baa5b50
Se han modificado 3 ficheros con 3 adiciones y 3 borrados

Ver fichero

@@ -46,7 +46,7 @@ RtlInterlockedCompareExchangePointer(IN VOLATILE PVOID *Destination,
*/
XTFASTCALL
LONG_PTR
RtlInterlockedDecrementLongPtr(IN VOLATILE PLONG_PTR Addend)
RtlInterlockedDecrement64(IN VOLATILE PLONG_PTR Addend)
{
return (LONG_PTR)__sync_sub_and_fetch(Addend, 1);
}