| 27 | static void cbForPrepareStreamSync(s32 result, DVDCommandBlock* block); |
| 28 | |
| 29 | void __DVDFSInit() |
| 30 | { |
| 31 | BootInfo = (OSBootInfo*)OSPhysicalToCached(0); |
| 32 | FstStart = (FSTEntry*)BootInfo->FSTLocation; |
| 33 | |
| 34 | if (FstStart) |
| 35 | { |
| 36 | MaxEntryNum = FstStart[0].nextEntryOrLength; |
| 37 | FstStringStart = (char*)&(FstStart[MaxEntryNum]); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | /* For convenience */ |
| 42 | #define entryIsDir(i) (((FstStart[i].isDirAndStringOff & 0xff000000) == 0) ? FALSE : TRUE) |
no outgoing calls
no test coverage detected