| 83 | }; |
| 84 | |
| 85 | void SwapLE(MoHead &head) |
| 86 | { |
| 87 | head.magic = SDL_SwapLE32(head.magic); |
| 88 | head.revision.major = SDL_SwapLE16(head.revision.major); |
| 89 | head.revision.minor = SDL_SwapLE16(head.revision.minor); |
| 90 | head.nbMappings = SDL_SwapLE32(head.nbMappings); |
| 91 | head.srcOffset = SDL_SwapLE32(head.srcOffset); |
| 92 | head.dstOffset = SDL_SwapLE32(head.dstOffset); |
| 93 | } |
| 94 | |
| 95 | struct MoEntry { |
| 96 | uint32_t length; |
no outgoing calls
no test coverage detected