| 801 | } |
| 802 | |
| 803 | DWORD LoadIndexFiles(TCascStorage * hs) |
| 804 | { |
| 805 | switch(hs->BuildFileType) |
| 806 | { |
| 807 | case CascBuildDb: // Load the index files from the disk |
| 808 | case CascBuildInfo: |
| 809 | return LoadLocalIndexFiles(hs); |
| 810 | |
| 811 | case CascVersions: // Load the index files from the cache / internet |
| 812 | return LoadArchiveIndexFiles(hs); |
| 813 | |
| 814 | default: |
| 815 | assert(false); |
| 816 | return ERROR_NOT_SUPPORTED; |
| 817 | } |
| 818 | } |
| 819 | |
| 820 | void FreeIndexFiles(TCascStorage * hs) |
| 821 | { |
no test coverage detected