| 140 | }; |
| 141 | |
| 142 | struct BlockHeader |
| 143 | { |
| 144 | const BlockHeader *getNext() const { return reinterpret_cast<const BlockHeader *>(reinterpret_cast<const u8 *>(this) + this->mSize); } |
| 145 | inline static void advance(const BlockHeader **iterator) |
| 146 | { |
| 147 | *iterator = reinterpret_cast<const BlockHeader *>(reinterpret_cast<const u8 *>(*iterator) + (*iterator)->mSize); |
| 148 | } |
| 149 | |
| 150 | u32 mMagic; // _00 |
| 151 | u32 mSize; // _04 |
| 152 | }; |
| 153 | |
| 154 | struct ResFONT |
| 155 | { |
nothing calls this directly
no outgoing calls
no test coverage detected