| 2932 | } |
| 2933 | |
| 2934 | DWORD Load(TCascStorage * hs, const FILE_MNDX_HEADER & MndxHeader, LPBYTE pbRootFile, LPBYTE pbRootEnd) |
| 2935 | { |
| 2936 | TMndxHandler Handler; |
| 2937 | DWORD dwErrCode; |
| 2938 | |
| 2939 | // Load and parse the entire MNDX structure |
| 2940 | dwErrCode = Handler.Load(MndxHeader, pbRootFile, pbRootEnd); |
| 2941 | if(dwErrCode == ERROR_SUCCESS) |
| 2942 | { |
| 2943 | // Search all file names and insert them into the file tree |
| 2944 | dwErrCode = Handler.LoadFileNames(hs, FileTree); |
| 2945 | } |
| 2946 | |
| 2947 | return dwErrCode; |
| 2948 | } |
| 2949 | }; |
| 2950 | |
| 2951 | //----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected