* Read a double word (32 bits) from the file (in low endian format). * @return Read word. */
| 132 | * @return Read word. |
| 133 | */ |
| 134 | uint32_t RandomAccessFile::ReadDword() |
| 135 | { |
| 136 | uint b = this->ReadWord(); |
| 137 | return (this->ReadWord() << 16) | b; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Read a block. |
no test coverage detected