mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-27 20:47:52 -05:00
registration: Update documentation and style
This commit is contained in:
@ -29,6 +29,9 @@ enum class TitleType : u8 {
|
||||
DeltaTitle = 0x83,
|
||||
};
|
||||
|
||||
bool operator>=(TitleType lhs, TitleType rhs);
|
||||
bool operator<=(TitleType lhs, TitleType rhs);
|
||||
|
||||
enum class ContentRecordType : u8 {
|
||||
Meta = 0,
|
||||
Program = 1,
|
||||
@ -96,8 +99,8 @@ public:
|
||||
std::vector<u8> Serialize() const;
|
||||
|
||||
private:
|
||||
std::unique_ptr<CNMTHeader> header;
|
||||
std::unique_ptr<OptionalHeader> opt_header;
|
||||
CNMTHeader header;
|
||||
OptionalHeader opt_header;
|
||||
std::vector<ContentRecord> content_records;
|
||||
std::vector<MetaRecord> meta_records;
|
||||
|
||||
|
Reference in New Issue
Block a user