* Skips a section of a binary stream. * * @param reader The BinaryReader instance used to read the binary stream. * @param size The number of bytes to skip in the binary stream. * @return Always returns undefined.
(reader: BinaryReader, size: number)
| 147 | * @return Always returns undefined. |
| 148 | */ |
| 149 | function skipSection(reader: BinaryReader, size: number): Section | undefined { |
| 150 | reader.skip(size); |
| 151 | return undefined; |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Reads a custom section from a binary reader and returns its representation. |