| 106 | }; |
| 107 | |
| 108 | bool IsLiveUpdateResource(dmhash_t lu_path_hash) |
| 109 | { |
| 110 | for (uint32_t i = 0; i < (sizeof(liveupdate_path_hash) / sizeof(liveupdate_path_hash[0])); ++i) |
| 111 | { |
| 112 | if (lu_path_hash == liveupdate_path_hash[i]) |
| 113 | { |
| 114 | return true; |
| 115 | } |
| 116 | } |
| 117 | return false; |
| 118 | } |
| 119 | |
| 120 | TEST(dmResourceArchive, ManifestHeader) |
| 121 | { |