TapeClassZeroMemory - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// minitape.h

SCSIPORT_API VOID TapeClassZeroMemory(
  [in, out] PVOID Buffer,
  [in]      ULONG BufferSize
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-minitape-tapeclasszeromemory)

TapeClassZeroMemory function

Description

The TapeClassZeroMemory routine fills a buffer with zeros.

Parameters

Buffer [in, out]

Pointer to the buffer that needs to be cleared.

BufferSize [in]

Specifies the size of the buffer, in bytes.

Return value

None

Remarks

A tape miniclass driver calls TapeClassZeroMemory to zero a buffer in a portable way. A miniclass driver must use TapeClassZeroMemory to clear the TAPE_INIT_DATA_EX structure and CDBs before it uses them.

See also

DriverEntry of Tape Miniclass Driver