| 25 | } |
| 26 | |
| 27 | static Handle fsSessionForArchive(FS_Archive archive) |
| 28 | { |
| 29 | for (int i = 0; i < FS_MAX_EXEMPT_ARCHIVE_HANDLES; i++) |
| 30 | { |
| 31 | if (fsExemptArchives[i] == archive) |
| 32 | return fsuHandle; |
| 33 | } |
| 34 | |
| 35 | return fsSession(); |
| 36 | } |
| 37 | |
| 38 | Result fsInit(void) |
| 39 | { |
no test coverage detected