| 199 | void *GhostFile::getBuf() { return &mHeader; } |
| 200 | u32 GhostFile::getFileSize() { return sizeof(Header) + sizeof(FileData); } |
| 201 | s32 GhostFile::getLength() { return sizeof(Header) + sizeof(FileData); } |
| 202 | s32 GhostFile::getOffset() { return 0; } |
| 203 | |
| 204 | void GhostFile::setCheckData(s64) |