summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/nca_metadata.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-25vfs: Move vfs files to their own directoryFearlessTobi1-1/+1
2023-09-12qt: add verification for installed contentsLiam1-0/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-11-04core: Remove unused includesameerj1-1/+0
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-2/+2
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2020-08-23file_sys: Replace inclusions with forward declarations where applicableLioncash1-1/+1
Same behavior, minus unnecessary inclusions where not necessary.
2019-07-02file_sys: Rename other ContentRecordType membersBakugo1-2/+2
2019-07-01file_sys: Rename ContentRecordType::Patch to DeltaFragmentBakugo1-1/+1
Avoids potential confusion, since patches and DeltaFragments are not the same thing. Actual full patches are listed under the Program type.
2019-06-11file_sys/nca_metadata: Update CNMT structuresLioncash1-2/+7
Names a few more entries in relevant structures. Information based off SwitchBrew and my own RE.
2019-04-05file_sys/nca_metadata: Remove unnecessary comparison operators for TitleTypeLioncash1-3/+0
enum class elements from the same enum can already be compared against one another without the need for explicitly defined comparison operators.
2018-09-20file-sys: Default heavy-weight class destructors in the cpp fileLioncash1-0/+1
Several classes have a lot of non-trivial members within them, or don't but likely should have the destructor defaulted in the cpp file for future-proofing/being more friendly to forward declarations. Leaving the destructor unspecified allows the compiler to inline the destruction code all over the place, which is generally undesirable from a code bloat perspective.
2018-09-04file_sys: Replace includes with forward declarations where applicableLioncash1-1/+0
Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
2018-08-21romfs_factory: Remove unnecessary includes and use forward declarations where applicableLioncash1-0/+1
Avoids the need to rebuild whatever includes the romfs factory header if the loader header ever changes. We also don't need to include the main core header. We can instead include the headers we specifically need.
2018-08-12registration: Update documentation and styleZach Hilman1-2/+5
2018-08-12nca_metadata: Remove unnecessary reference to base fileZach Hilman1-1/+0
2018-08-12file_sys: Comply to style guidelinesZach Hilman1-0/+4
2018-08-12file_sys: Add support for parsing NCA metadata (CNMT)Zach Hilman1-0/+105