readRIFFChunkHeader

@nogc nothrow
void
readRIFFChunkHeader
(
ref const(ubyte)[] input
,
out uint chunkId
,
out uint chunkSize
,
bool* err
)

Return Value

Type: void

A RIFF chunk header parsed from an input range. On success, *err is set to false and return integer. On failure, *err is set to true and undefined values for chunkId and chunkSize. The input range cannot be used anymore.

Meta