| 2423 | } |
| 2424 | |
| 2425 | txU4 fxMapperRead4(txMapper* self) |
| 2426 | { |
| 2427 | txU4 result; |
| 2428 | result = fxMapperRead1(self) << 24; |
| 2429 | result |= fxMapperRead1(self) << 16; |
| 2430 | result |= fxMapperRead1(self) << 8; |
| 2431 | result |= fxMapperRead1(self); |
| 2432 | return result; |
| 2433 | } |
| 2434 | |
| 2435 | void fxMapperReadAtom(txMapper* self, Atom* atom) |
| 2436 | { |
no test coverage detected