Update ncm_remote_content_storage_impl.hpp

This commit is contained in:
Zerofo 2021-10-26 10:20:38 +08:00 committed by GitHub
parent 9107b3f378
commit 5423b5c320
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -201,11 +201,14 @@ namespace ams::ncm {
}
Result RegisterPath(const ContentId &content_id, const Path &path) {
return ncmContentStorageRegisterPath(std::addressof(m_srv), Convert(content_id), path.str);
AMS_ABORT("TODO");
//return ncmContentStorageRegisterPath(std::addressof(m_srv), Convert(content_id), path.str);
}
Result ClearRegisteredPath() {
return ncmContentStorageClearRegisteredPath(std::addressof(m_srv));
AMS_ABORT("TODO");
//return ncmContentStorageClearRegisteredPath(std::addressof(m_srv));
}
};
static_assert(ncm::IsIContentStorage<RemoteContentStorageImpl>);