diff --git a/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.cpp b/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.cpp
index 88b086e76..70cea04cb 100644
--- a/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.cpp
+++ b/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.cpp
@@ -14,8 +14,8 @@
* along with this program. If not, see .
*/
-#include "../lr_contentlocationresolver.hpp"
-#include "../lr_redirectonlylocationresolver.hpp"
+#include "../lr_content_location_resolver.hpp"
+#include "../lr_redirect_only_location_resolver.hpp"
#include "lr_location_resolver_manager_impl.hpp"
namespace ams::lr::impl {
diff --git a/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.hpp b/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.hpp
index 130eb133c..17c838c6a 100644
--- a/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.hpp
+++ b/stratosphere/ncm/source/impl/lr_location_resolver_manager_impl.hpp
@@ -18,10 +18,10 @@
#include
#include
-#include "../lr_addoncontentlocationresolver.hpp"
-#include "../lr_ilocationresolver.hpp"
+#include "../lr_add_on_content_location_resolver.hpp"
+#include "../lr_i_location_resolver.hpp"
#include "../lr_i_location_resolver_manager.hpp"
-#include "../lr_registeredlocationresolver.hpp"
+#include "../lr_registered_location_resolver.hpp"
#include "ncm_bounded_map.hpp"
namespace ams::lr::impl {
diff --git a/stratosphere/ncm/source/impl/lr_redirection.hpp b/stratosphere/ncm/source/impl/lr_redirection.hpp
index 4d424fc79..9cd397dc8 100644
--- a/stratosphere/ncm/source/impl/lr_redirection.hpp
+++ b/stratosphere/ncm/source/impl/lr_redirection.hpp
@@ -21,8 +21,8 @@
namespace ams::lr::impl {
enum RedirectionFlags {
- RedirectionFlags_None = (0 << 0),
- RedirectionFlags_Application = (1 << 0),
+ RedirectionFlags_None = (0 << 0),
+ RedirectionFlags_Application = (1 << 0),
};
class LocationRedirector {
diff --git a/stratosphere/ncm/source/impl/ncm_content_manager.cpp b/stratosphere/ncm/source/impl/ncm_content_manager.cpp
index a20f90b01..a9852b8b9 100644
--- a/stratosphere/ncm/source/impl/ncm_content_manager.cpp
+++ b/stratosphere/ncm/source/impl/ncm_content_manager.cpp
@@ -19,11 +19,11 @@
#include
#include
-#include "../ncm_contentmetadatabase.hpp"
-#include "../ncm_contentstorage.hpp"
+#include "../ncm_content_meta_database.hpp"
+#include "../ncm_content_storage.hpp"
#include "../ncm_fs.hpp"
#include "../ncm_make_path.hpp"
-#include "../ncm_readonlycontentstorage.hpp"
+#include "../ncm_read_only_content_storage.hpp"
#include "ncm_content_manager.hpp"
#include "ncm_rights_cache.hpp"
diff --git a/stratosphere/ncm/source/impl/ncm_content_manager.hpp b/stratosphere/ncm/source/impl/ncm_content_manager.hpp
index feb812f62..bf2598c51 100644
--- a/stratosphere/ncm/source/impl/ncm_content_manager.hpp
+++ b/stratosphere/ncm/source/impl/ncm_content_manager.hpp
@@ -18,8 +18,8 @@
#include
#include
-#include "../ncm_icontentmetadatabase.hpp"
-#include "../ncm_icontentstorage.hpp"
+#include "../ncm_i_content_meta_database.hpp"
+#include "../ncm_i_content_storage.hpp"
namespace ams::ncm::impl {
diff --git a/stratosphere/ncm/source/lr_addoncontentlocationresolver.cpp b/stratosphere/ncm/source/lr_add_on_content_location_resolver.cpp
similarity index 98%
rename from stratosphere/ncm/source/lr_addoncontentlocationresolver.cpp
rename to stratosphere/ncm/source/lr_add_on_content_location_resolver.cpp
index 631b829cd..15368cb00 100644
--- a/stratosphere/ncm/source/lr_addoncontentlocationresolver.cpp
+++ b/stratosphere/ncm/source/lr_add_on_content_location_resolver.cpp
@@ -15,7 +15,7 @@
*/
#include "impl/ncm_content_manager.hpp"
-#include "lr_addoncontentlocationresolver.hpp"
+#include "lr_add_on_content_location_resolver.hpp"
namespace ams::lr {
diff --git a/stratosphere/ncm/source/lr_addoncontentlocationresolver.hpp b/stratosphere/ncm/source/lr_add_on_content_location_resolver.hpp
similarity index 86%
rename from stratosphere/ncm/source/lr_addoncontentlocationresolver.hpp
rename to stratosphere/ncm/source/lr_add_on_content_location_resolver.hpp
index d14db4762..9af9bb910 100644
--- a/stratosphere/ncm/source/lr_addoncontentlocationresolver.hpp
+++ b/stratosphere/ncm/source/lr_add_on_content_location_resolver.hpp
@@ -25,12 +25,12 @@ namespace ams::lr {
class AddOnContentLocationResolverInterface : public sf::IServiceObject {
protected:
enum class CommandId {
- ResolveAddOnContentPath = 0,
- RegisterAddOnContentStorageDeprecated = 1,
- RegisterAddOnContentStorage = 1,
- UnregisterAllAddOnContentPath = 2,
- RefreshApplicationAddOnContent = 3,
- UnregisterApplicationAddOnContent = 4,
+ ResolveAddOnContentPath = 0,
+ RegisterAddOnContentStorageDeprecated = 1,
+ RegisterAddOnContentStorage = 1,
+ UnregisterAllAddOnContentPath = 2,
+ RefreshApplicationAddOnContent = 3,
+ UnregisterApplicationAddOnContent = 4,
};
private:
impl::RegisteredStorages registered_storages;
diff --git a/stratosphere/ncm/source/lr_contentlocationresolver.cpp b/stratosphere/ncm/source/lr_content_location_resolver.cpp
similarity index 99%
rename from stratosphere/ncm/source/lr_contentlocationresolver.cpp
rename to stratosphere/ncm/source/lr_content_location_resolver.cpp
index 151674f96..e71967788 100644
--- a/stratosphere/ncm/source/lr_contentlocationresolver.cpp
+++ b/stratosphere/ncm/source/lr_content_location_resolver.cpp
@@ -15,7 +15,7 @@
*/
#include "impl/ncm_content_manager.hpp"
-#include "lr_contentlocationresolver.hpp"
+#include "lr_content_location_resolver.hpp"
namespace ams::lr {
diff --git a/stratosphere/ncm/source/lr_contentlocationresolver.hpp b/stratosphere/ncm/source/lr_content_location_resolver.hpp
similarity index 98%
rename from stratosphere/ncm/source/lr_contentlocationresolver.hpp
rename to stratosphere/ncm/source/lr_content_location_resolver.hpp
index 5ecbebb2e..3ff4ed9bf 100644
--- a/stratosphere/ncm/source/lr_contentlocationresolver.hpp
+++ b/stratosphere/ncm/source/lr_content_location_resolver.hpp
@@ -18,9 +18,9 @@
#include
#include
-#include "lr_ilocationresolver.hpp"
-#include "ncm_icontentmetadatabase.hpp"
-#include "ncm_icontentstorage.hpp"
+#include "lr_i_location_resolver.hpp"
+#include "ncm_i_content_meta_database.hpp"
+#include "ncm_i_content_storage.hpp"
namespace ams::lr {
diff --git a/stratosphere/ncm/source/lr_ilocationresolver.hpp b/stratosphere/ncm/source/lr_i_location_resolver.hpp
similarity index 81%
rename from stratosphere/ncm/source/lr_ilocationresolver.hpp
rename to stratosphere/ncm/source/lr_i_location_resolver.hpp
index a1deb1031..63a59dfc4 100644
--- a/stratosphere/ncm/source/lr_ilocationresolver.hpp
+++ b/stratosphere/ncm/source/lr_i_location_resolver.hpp
@@ -25,32 +25,32 @@ namespace ams::lr {
class ILocationResolver : public sf::IServiceObject {
protected:
enum class CommandId {
- ResolveProgramPath = 0,
- RedirectProgramPath = 1,
- ResolveApplicationControlPath = 2,
- ResolveApplicationHtmlDocumentPath = 3,
- ResolveDataPath = 4,
- RedirectApplicationControlPathDeprecated = 5,
- RedirectApplicationControlPath = 5,
- RedirectApplicationHtmlDocumentPathDeprecated = 6,
- RedirectApplicationHtmlDocumentPath = 6,
- ResolveApplicationLegalInformationPath = 7,
- RedirectApplicationLegalInformationPathDeprecated = 8,
- RedirectApplicationLegalInformationPath = 8,
- Refresh = 9,
- RedirectApplicationProgramPathDeprecated = 10,
- RedirectApplicationProgramPath = 10,
- ClearApplicationRedirectionDeprecated = 11,
- ClearApplicationRedirection = 11,
- EraseProgramRedirection = 12,
- EraseApplicationControlRedirection = 13,
- EraseApplicationHtmlDocumentRedirection = 14,
- EraseApplicationLegalInformationRedirection = 15,
- ResolveProgramPathForDebug = 16,
- RedirectProgramPathForDebug = 17,
- RedirectApplicationProgramPathForDebugDeprecated = 18,
- RedirectApplicationProgramPathForDebug = 18,
- EraseProgramRedirectionForDebug = 19,
+ ResolveProgramPath = 0,
+ RedirectProgramPath = 1,
+ ResolveApplicationControlPath = 2,
+ ResolveApplicationHtmlDocumentPath = 3,
+ ResolveDataPath = 4,
+ RedirectApplicationControlPathDeprecated = 5,
+ RedirectApplicationControlPath = 5,
+ RedirectApplicationHtmlDocumentPathDeprecated = 6,
+ RedirectApplicationHtmlDocumentPath = 6,
+ ResolveApplicationLegalInformationPath = 7,
+ RedirectApplicationLegalInformationPathDeprecated = 8,
+ RedirectApplicationLegalInformationPath = 8,
+ Refresh = 9,
+ RedirectApplicationProgramPathDeprecated = 10,
+ RedirectApplicationProgramPath = 10,
+ ClearApplicationRedirectionDeprecated = 11,
+ ClearApplicationRedirection = 11,
+ EraseProgramRedirection = 12,
+ EraseApplicationControlRedirection = 13,
+ EraseApplicationHtmlDocumentRedirection = 14,
+ EraseApplicationLegalInformationRedirection = 15,
+ ResolveProgramPathForDebug = 16,
+ RedirectProgramPathForDebug = 17,
+ RedirectApplicationProgramPathForDebugDeprecated = 18,
+ RedirectApplicationProgramPathForDebug = 18,
+ EraseProgramRedirectionForDebug = 19,
};
protected:
impl::LocationRedirector program_redirector;
diff --git a/stratosphere/ncm/source/lr_i_location_resolver_manager.hpp b/stratosphere/ncm/source/lr_i_location_resolver_manager.hpp
index 3def2afda..7db086710 100644
--- a/stratosphere/ncm/source/lr_i_location_resolver_manager.hpp
+++ b/stratosphere/ncm/source/lr_i_location_resolver_manager.hpp
@@ -18,19 +18,19 @@
#include
#include
-#include "lr_addoncontentlocationresolver.hpp"
-#include "lr_ilocationresolver.hpp"
-#include "lr_registeredlocationresolver.hpp"
+#include "lr_add_on_content_location_resolver.hpp"
+#include "lr_i_location_resolver.hpp"
+#include "lr_registered_location_resolver.hpp"
namespace ams::lr {
class ILocationResolverManager : public sf::IServiceObject {
protected:
enum class CommandId {
- OpenLocationResolver = 0,
- OpenRegisteredLocationResolver = 1,
- RefreshLocationResolver = 2,
- OpenAddOnContentLocationResolver = 3,
+ OpenLocationResolver = 0,
+ OpenRegisteredLocationResolver = 1,
+ RefreshLocationResolver = 2,
+ OpenAddOnContentLocationResolver = 3,
};
public:
/* Actual commands. */
diff --git a/stratosphere/ncm/source/lr_redirectonlylocationresolver.cpp b/stratosphere/ncm/source/lr_redirect_only_location_resolver.cpp
similarity index 87%
rename from stratosphere/ncm/source/lr_redirectonlylocationresolver.cpp
rename to stratosphere/ncm/source/lr_redirect_only_location_resolver.cpp
index 3762eb7a2..958d292ba 100644
--- a/stratosphere/ncm/source/lr_redirectonlylocationresolver.cpp
+++ b/stratosphere/ncm/source/lr_redirect_only_location_resolver.cpp
@@ -15,16 +15,12 @@
*/
#include "impl/ncm_content_manager.hpp"
-#include "lr_redirectonlylocationresolver.hpp"
+#include "lr_redirect_only_location_resolver.hpp"
namespace ams::lr {
RedirectOnlyLocationResolverInterface::~RedirectOnlyLocationResolverInterface() {
- this->program_redirector.ClearRedirections();
- this->debug_program_redirector.ClearRedirections();
- this->app_control_redirector.ClearRedirections();
- this->html_docs_redirector.ClearRedirections();
- this->legal_info_redirector.ClearRedirections();
+ this->ClearRedirections();
}
Result RedirectOnlyLocationResolverInterface::ResolveProgramPath(sf::Out out, ncm::ProgramId id) {
@@ -87,11 +83,7 @@ namespace ams::lr {
}
Result RedirectOnlyLocationResolverInterface::Refresh() {
- this->program_redirector.ClearRedirections();
- this->debug_program_redirector.ClearRedirections();
- this->app_control_redirector.ClearRedirections();
- this->html_docs_redirector.ClearRedirections();
- this->legal_info_redirector.ClearRedirections();
+ this->ClearRedirections();
return ResultSuccess();
}
@@ -106,11 +98,7 @@ namespace ams::lr {
}
Result RedirectOnlyLocationResolverInterface::ClearApplicationRedirectionDeprecated() {
- this->program_redirector.ClearRedirections(impl::RedirectionFlags_Application);
- this->debug_program_redirector.ClearRedirections(impl::RedirectionFlags_Application);
- this->app_control_redirector.ClearRedirections(impl::RedirectionFlags_Application);
- this->html_docs_redirector.ClearRedirections(impl::RedirectionFlags_Application);
- this->legal_info_redirector.ClearRedirections(impl::RedirectionFlags_Application);
+ this->ClearRedirections(impl::RedirectionFlags_Application);
return ResultSuccess();
}
diff --git a/stratosphere/ncm/source/lr_redirectonlylocationresolver.hpp b/stratosphere/ncm/source/lr_redirect_only_location_resolver.hpp
similarity index 99%
rename from stratosphere/ncm/source/lr_redirectonlylocationresolver.hpp
rename to stratosphere/ncm/source/lr_redirect_only_location_resolver.hpp
index cafc38fe0..0650dbc74 100644
--- a/stratosphere/ncm/source/lr_redirectonlylocationresolver.hpp
+++ b/stratosphere/ncm/source/lr_redirect_only_location_resolver.hpp
@@ -18,7 +18,7 @@
#include
#include
-#include "lr_contentlocationresolver.hpp"
+#include "lr_content_location_resolver.hpp"
namespace ams::lr {
diff --git a/stratosphere/ncm/source/lr_registeredlocationresolver.cpp b/stratosphere/ncm/source/lr_registered_location_resolver.cpp
similarity index 98%
rename from stratosphere/ncm/source/lr_registeredlocationresolver.cpp
rename to stratosphere/ncm/source/lr_registered_location_resolver.cpp
index 90d4de987..1b956354a 100644
--- a/stratosphere/ncm/source/lr_registeredlocationresolver.cpp
+++ b/stratosphere/ncm/source/lr_registered_location_resolver.cpp
@@ -14,7 +14,7 @@
* along with this program. If not, see .
*/
-#include "lr_registeredlocationresolver.hpp"
+#include "lr_registered_location_resolver.hpp"
namespace ams::lr {
@@ -46,7 +46,7 @@ namespace ams::lr {
Result RegisteredLocationResolverInterface::RefreshImpl(const ncm::ProgramId* excluding_ids, size_t num_ids) {
/* On < 9.0.0, exclusion lists were not supported yet, so simply clear and return. */
- if (hos::GetVersion < hos::Version_900) {
+ if (hos::GetVersion() < hos::Version_900) {
this->ClearRedirections();
return ResultSuccess();
}
diff --git a/stratosphere/ncm/source/lr_registeredlocationresolver.hpp b/stratosphere/ncm/source/lr_registered_location_resolver.hpp
similarity index 100%
rename from stratosphere/ncm/source/lr_registeredlocationresolver.hpp
rename to stratosphere/ncm/source/lr_registered_location_resolver.hpp
diff --git a/stratosphere/ncm/source/ncm_content_manager_service.hpp b/stratosphere/ncm/source/ncm_content_manager_service.hpp
index 36059b26b..6cf09f573 100644
--- a/stratosphere/ncm/source/ncm_content_manager_service.hpp
+++ b/stratosphere/ncm/source/ncm_content_manager_service.hpp
@@ -18,8 +18,8 @@
#include
#include
-#include "ncm_icontentmetadatabase.hpp"
-#include "ncm_icontentstorage.hpp"
+#include "ncm_i_content_meta_database.hpp"
+#include "ncm_i_content_storage.hpp"
namespace ams::ncm {
diff --git a/stratosphere/ncm/source/ncm_contentmetadatabase.cpp b/stratosphere/ncm/source/ncm_content_meta_database.cpp
similarity index 99%
rename from stratosphere/ncm/source/ncm_contentmetadatabase.cpp
rename to stratosphere/ncm/source/ncm_content_meta_database.cpp
index b2069274b..6c959353c 100644
--- a/stratosphere/ncm/source/ncm_contentmetadatabase.cpp
+++ b/stratosphere/ncm/source/ncm_content_meta_database.cpp
@@ -14,7 +14,7 @@
* along with this program. If not, see .
*/
-#include "ncm_contentmetadatabase.hpp"
+#include "ncm_content_meta_database.hpp"
#include "ncm_utils.hpp"
namespace ams::ncm {
diff --git a/stratosphere/ncm/source/ncm_contentmetadatabase.hpp b/stratosphere/ncm/source/ncm_content_meta_database.hpp
similarity index 99%
rename from stratosphere/ncm/source/ncm_contentmetadatabase.hpp
rename to stratosphere/ncm/source/ncm_content_meta_database.hpp
index 49700f025..b8651ea00 100644
--- a/stratosphere/ncm/source/ncm_contentmetadatabase.hpp
+++ b/stratosphere/ncm/source/ncm_content_meta_database.hpp
@@ -18,7 +18,7 @@
#include
#include
-#include "ncm_icontentmetadatabase.hpp"
+#include "ncm_i_content_meta_database.hpp"
namespace ams::ncm {
diff --git a/stratosphere/ncm/source/ncm_contentstorage.cpp b/stratosphere/ncm/source/ncm_content_storage.cpp
similarity index 99%
rename from stratosphere/ncm/source/ncm_contentstorage.cpp
rename to stratosphere/ncm/source/ncm_content_storage.cpp
index a4613581e..92bb6ca62 100644
--- a/stratosphere/ncm/source/ncm_contentstorage.cpp
+++ b/stratosphere/ncm/source/ncm_content_storage.cpp
@@ -14,7 +14,7 @@
* along with this program. If not, see .
*/
-#include "ncm_contentstorage.hpp"
+#include "ncm_content_storage.hpp"
#include "ncm_fs.hpp"
#include "ncm_make_path.hpp"
#include "ncm_utils.hpp"
diff --git a/stratosphere/ncm/source/ncm_contentstorage.hpp b/stratosphere/ncm/source/ncm_content_storage.hpp
similarity index 99%
rename from stratosphere/ncm/source/ncm_contentstorage.hpp
rename to stratosphere/ncm/source/ncm_content_storage.hpp
index 66157af96..efdd5857e 100644
--- a/stratosphere/ncm/source/ncm_contentstorage.hpp
+++ b/stratosphere/ncm/source/ncm_content_storage.hpp
@@ -20,7 +20,7 @@
#include "impl/ncm_placeholder_accessor.hpp"
#include "impl/ncm_rights_cache.hpp"
-#include "ncm_icontentstorage.hpp"
+#include "ncm_i_content_storage.hpp"
#include "ncm_path_utils.hpp"
namespace ams::ncm {
diff --git a/stratosphere/ncm/source/ncm_icontentmetadatabase.hpp b/stratosphere/ncm/source/ncm_i_content_meta_database.hpp
similarity index 83%
rename from stratosphere/ncm/source/ncm_icontentmetadatabase.hpp
rename to stratosphere/ncm/source/ncm_i_content_meta_database.hpp
index c7deed872..3b352c9f1 100644
--- a/stratosphere/ncm/source/ncm_icontentmetadatabase.hpp
+++ b/stratosphere/ncm/source/ncm_i_content_meta_database.hpp
@@ -24,27 +24,27 @@ namespace ams::ncm {
class IContentMetaDatabase : public sf::IServiceObject {
protected:
enum class CommandId {
- Set = 0,
- Get = 1,
- Remove = 2,
- GetContentIdByType = 3,
- ListContentInfo = 4,
- List = 5,
- GetLatestContentMetaKey = 6,
- ListApplication = 7,
- Has = 8,
- HasAll = 9,
- GetSize = 10,
- GetRequiredSystemVersion = 11,
- GetPatchId = 12,
- DisableForcibly = 13,
- LookupOrphanContent = 14,
- Commit = 15,
- HasContent = 16,
- ListContentMetaInfo = 17,
- GetAttributes = 18,
- GetRequiredApplicationVersion = 19,
- GetContentIdByTypeAndIdOffset = 20,
+ Set = 0,
+ Get = 1,
+ Remove = 2,
+ GetContentIdByType = 3,
+ ListContentInfo = 4,
+ List = 5,
+ GetLatestContentMetaKey = 6,
+ ListApplication = 7,
+ Has = 8,
+ HasAll = 9,
+ GetSize = 10,
+ GetRequiredSystemVersion = 11,
+ GetPatchId = 12,
+ DisableForcibly = 13,
+ LookupOrphanContent = 14,
+ Commit = 15,
+ HasContent = 16,
+ ListContentMetaInfo = 17,
+ GetAttributes = 18,
+ GetRequiredApplicationVersion = 19,
+ GetContentIdByTypeAndIdOffset = 20,
};
protected:
ams::kvdb::MemoryKeyValueStore* kvs;
diff --git a/stratosphere/ncm/source/ncm_icontentstorage.hpp b/stratosphere/ncm/source/ncm_i_content_storage.hpp
similarity index 78%
rename from stratosphere/ncm/source/ncm_icontentstorage.hpp
rename to stratosphere/ncm/source/ncm_i_content_storage.hpp
index bf6b7929d..8f60425f9 100644
--- a/stratosphere/ncm/source/ncm_icontentstorage.hpp
+++ b/stratosphere/ncm/source/ncm_i_content_storage.hpp
@@ -23,34 +23,34 @@ namespace ams::ncm {
class IContentStorage : public sf::IServiceObject {
protected:
enum class CommandId {
- GeneratePlaceHolderId = 0,
- CreatePlaceHolder = 1,
- DeletePlaceHolder = 2,
- HasPlaceHolder = 3,
- WritePlaceHolder = 4,
- Register = 5,
- Delete = 6,
- Has = 7,
- GetPath = 8,
- GetPlaceHolderPath = 9,
- CleanupAllPlaceHolder = 10,
- ListPlaceHolder = 11,
- GetContentCount = 12,
- ListContentId = 13,
- GetSizeFromContentId = 14,
- DisableForcibly = 15,
- RevertToPlaceHolder = 16,
- SetPlaceHolderSize = 17,
- ReadContentIdFile = 18,
- GetRightsIdFromPlaceHolderId = 19,
- GetRightsIdFromContentId = 20,
- WriteContentForDebug = 21,
- GetFreeSpaceSize = 22,
- GetTotalSpaceSize = 23,
- FlushPlaceHolder = 24,
- GetSizeFromPlaceHolderId = 25,
- RepairInvalidFileAttribute = 26,
- GetRightsIdFromPlaceHolderIdWithCache = 27,
+ GeneratePlaceHolderId = 0,
+ CreatePlaceHolder = 1,
+ DeletePlaceHolder = 2,
+ HasPlaceHolder = 3,
+ WritePlaceHolder = 4,
+ Register = 5,
+ Delete = 6,
+ Has = 7,
+ GetPath = 8,
+ GetPlaceHolderPath = 9,
+ CleanupAllPlaceHolder = 10,
+ ListPlaceHolder = 11,
+ GetContentCount = 12,
+ ListContentId = 13,
+ GetSizeFromContentId = 14,
+ DisableForcibly = 15,
+ RevertToPlaceHolder = 16,
+ SetPlaceHolderSize = 17,
+ ReadContentIdFile = 18,
+ GetRightsIdFromPlaceHolderId = 19,
+ GetRightsIdFromContentId = 20,
+ WriteContentForDebug = 21,
+ GetFreeSpaceSize = 22,
+ GetTotalSpaceSize = 23,
+ FlushPlaceHolder = 24,
+ GetSizeFromPlaceHolderId = 25,
+ RepairInvalidFileAttribute = 26,
+ GetRightsIdFromPlaceHolderIdWithCache = 27,
};
protected:
char root_path[FS_MAX_PATH-1];
diff --git a/stratosphere/ncm/source/ncm_readonlycontentstorage.cpp b/stratosphere/ncm/source/ncm_read_only_content_storage.cpp
similarity index 99%
rename from stratosphere/ncm/source/ncm_readonlycontentstorage.cpp
rename to stratosphere/ncm/source/ncm_read_only_content_storage.cpp
index b14c40e90..7f7406a37 100644
--- a/stratosphere/ncm/source/ncm_readonlycontentstorage.cpp
+++ b/stratosphere/ncm/source/ncm_read_only_content_storage.cpp
@@ -16,7 +16,7 @@
#include "ncm_fs.hpp"
#include "ncm_path_utils.hpp"
-#include "ncm_readonlycontentstorage.hpp"
+#include "ncm_read_only_content_storage.hpp"
namespace ams::ncm {
diff --git a/stratosphere/ncm/source/ncm_readonlycontentstorage.hpp b/stratosphere/ncm/source/ncm_read_only_content_storage.hpp
similarity index 99%
rename from stratosphere/ncm/source/ncm_readonlycontentstorage.hpp
rename to stratosphere/ncm/source/ncm_read_only_content_storage.hpp
index 4d00ecf39..83659c3fc 100644
--- a/stratosphere/ncm/source/ncm_readonlycontentstorage.hpp
+++ b/stratosphere/ncm/source/ncm_read_only_content_storage.hpp
@@ -18,7 +18,7 @@
#include
#include
-#include "ncm_icontentstorage.hpp"
+#include "ncm_i_content_storage.hpp"
namespace ams::ncm {