| 110 | std::vector<char> LoaderImportFileTable; |
| 111 | |
| 112 | bool Read(fl_hdr& x) |
| 113 | { |
| 114 | // FIXME: Add byte swapping if needed. |
| 115 | return static_cast<bool>( |
| 116 | this->Stream->read(reinterpret_cast<char*>(&x), sizeof(x))); |
| 117 | } |
| 118 | |
| 119 | bool Read(ar_hdr& x) |
| 120 | { |