TROPHY.TRP: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
[[Category:Software]]
Trophy installation data.
Trophy installation data.


Line 26: Line 25:
   unsigned char padding[16]
   unsigned char padding[16]
</code>
</code>
{{File Formats}}<noinclude>[[Category:Main]]</noinclude>

Revision as of 01:52, 12 February 2014

Trophy installation data.

  • Version 1 Structure:

 uint32_t magic;
 uint32_t version; // 1
 uint64_t file_size;
 uint32_t files_count;
 uint32_t element_size;
 uint32_t unknown;
 unsigned char padding[36];

  • Version 2 Structure:

 uint32_t magic;
 uint32_t version; // 2
 uint64_t file_size;
 uint32_t files_count;
 uint32_t element_size;
 uint32_t unknown;
 unsigned char sha1[20];
 unsigned char padding[16]