| 1711 | } |
| 1712 | |
| 1713 | DWORD LoadCdnBuildFile(TCascStorage * hs) |
| 1714 | { |
| 1715 | // The CKey for the CDN config should have been loaded already |
| 1716 | assert(hs->CdnBuildKey.pbData != NULL && hs->CdnBuildKey.cbData == MD5_HASH_SIZE); |
| 1717 | |
| 1718 | // Inform the user about what we are doing |
| 1719 | if(InvokeProgressCallback(hs, "Loading CDN build file", NULL, 0, 0)) |
| 1720 | return ERROR_CANCELLED; |
| 1721 | |
| 1722 | // Load the CDN config file. Note that we don't |
| 1723 | // need it for anything, really, so we don't care if it fails |
| 1724 | return FetchAndLoadConfigFile(hs, &hs->CdnBuildKey, ParseFile_CdnBuild); |
| 1725 | } |
| 1726 | |
| 1727 | DWORD LoadInternalFileToMemory(TCascStorage * hs, PCASC_CKEY_ENTRY pCKeyEntry, CASC_BLOB & FileData) |
| 1728 | { |
no test coverage detected