summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/nca_metadata.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: Remove unused includesameerj2021-11-041-1/+0
|
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-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.
* file_sys: Replace inclusions with forward declarations where applicableLioncash2020-08-231-1/+1
| | | | Same behavior, minus unnecessary inclusions where not necessary.
* file_sys: Rename other ContentRecordType membersBakugo2019-07-021-2/+2
|
* file_sys: Rename ContentRecordType::Patch to DeltaFragmentBakugo2019-07-011-1/+1
| | | | Avoids potential confusion, since patches and DeltaFragments are not the same thing. Actual full patches are listed under the Program type.
* file_sys/nca_metadata: Update CNMT structuresLioncash2019-06-111-2/+7
| | | | | Names a few more entries in relevant structures. Information based off SwitchBrew and my own RE.
* file_sys/nca_metadata: Remove unnecessary comparison operators for TitleTypeLioncash2019-04-051-3/+0
| | | | | | enum class elements from the same enum can already be compared against one another without the need for explicitly defined comparison operators.
* file-sys: Default heavy-weight class destructors in the cpp fileLioncash2018-09-201-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.
* file_sys: Replace includes with forward declarations where applicableLioncash2018-09-041-1/+0
| | | | | Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
* romfs_factory: Remove unnecessary includes and use forward declarations where applicableLioncash2018-08-211-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.
* registration: Update documentation and styleZach Hilman2018-08-121-2/+5
|
* nca_metadata: Remove unnecessary reference to base fileZach Hilman2018-08-121-1/+0
|
* file_sys: Comply to style guidelinesZach Hilman2018-08-121-0/+4
|
* file_sys: Add support for parsing NCA metadata (CNMT)Zach Hilman2018-08-121-0/+105