1
0
şundan çatallanmış xt-sys/exectos

Move RtlFillMemory() routine to ntosdrv driver

Bu işleme şunda yer alıyor:
2024-02-20 16:08:10 +01:00
ebeveyn 246968045a
işleme 477e56e294
6 değiştirilmiş dosya ile 39 ekleme ve 35 silme

Dosyayı Görüntüle

@@ -87,32 +87,6 @@ RtlCopyMemory(OUT PVOID Destination,
}
}
/**
* This routine fills a section of memory with a specified byte.
*
* @param Destination
* Supplies a pointer to the buffer to fill.
*
* @param Length
* Specifies a number of bytes to store in memory.
*
* @param Byte
* Supplies a pattern to fill memory.
*
* @return This routine does not return any value.
*
* @since NT 3.5
*/
XTAPI
VOID
RtlFillMemory(OUT PVOID Destination,
IN SIZE_T Length,
IN UCHAR Byte)
{
/* Fill the buffer with specified byte */
RtlSetMemory(Destination, Byte, Length);
}
/**
* This routine copies a block of memory either forward of backward, depeding
* if source and destination buffers overlap or not.

Dosyayı Görüntüle

@@ -42,7 +42,6 @@
@ stdcall RtlConvertToLargeIntegerUnsigned32(long)
@ stdcall RtlCopyMemory(ptr ptr long)
@ stdcall RtlDivideLargeInteger(long long long ptr)
@ stdcall RtlFillMemory(ptr long long)
@ stdcall RtlMoveMemory(ptr ptr long)
@ stdcall RtlMultiplyLargeInteger(long long long)
@ stdcall RtlReadRegisterByte(ptr)