1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-22 18:26:39 +00:00

Move to-do list out of the readme.

This commit is contained in:
Pablo Curiel 2020-07-07 09:01:17 -04:00
parent 0c34ef84ac
commit 24cec26980
2 changed files with 47 additions and 52 deletions

View file

@ -1,55 +1,4 @@
```
todo:
hfs0: filelist generation methods
tik: automatically dump tickets to the SD card?
tik: use dumped tickets when the original ones can't be found in the ES savefile?
nca: function to write encrypted nca headers / nca fs headers (don't forget nca0 please)
pfs0: filelist generation methods
pfs0: full header aligned to 0x20 (nsp)
pfs0: function to write patches
romfs: filelist generation methods
romfs: function to write patches
bktr: filelist generation methods (wrappers for romfs functions)
char content_info_path[FS_MAX_PATH] = {0};
sprintf(content_info_path, "sdmc:/%016lX.bin", xml_program_info.title_id);
FILE *content_info = fopen(content_info_path, "wb");
if (content_info)
{
fwrite(titleContentInfos, 1, titleContentInfoCnt * sizeof(NcmContentInfo), content_info);
fclose(content_info);
}
Result txIsFat32(bool *mode) {
Result rc = serviceDispatch(&g_tx, 137);
if (rc == 0xa08) {
*mode = false;
return 0;
} else if (rc == 0) {
*mode = true;
}
return rc;
}
```
# nxdumptool
# nxdumptool
<img width="200" src="icon.jpg">
Nintendo Switch Dump Tool

46
todo.txt Normal file
View file

@ -0,0 +1,46 @@
todo:
hfs0: filelist generation methods
tik: automatically dump tickets to the SD card?
tik: use dumped tickets when the original ones can't be found in the ES savefile?
nca: function to write encrypted nca headers / nca fs headers (don't forget nca0 please)
pfs0: filelist generation methods
pfs0: full header aligned to 0x20 (nsp)
pfs0: function to write patches
romfs: filelist generation methods
romfs: function to write patches
bktr: filelist generation methods (wrappers for romfs functions)
char content_info_path[FS_MAX_PATH] = {0};
sprintf(content_info_path, "sdmc:/%016lX.bin", xml_program_info.title_id);
FILE *content_info = fopen(content_info_path, "wb");
if (content_info)
{
fwrite(titleContentInfos, 1, titleContentInfoCnt * sizeof(NcmContentInfo), content_info);
fclose(content_info);
}
Result txIsFat32(bool *mode) {
Result rc = serviceDispatch(&g_tx, 137);
if (rc == 0xa08) {
*mode = false;
return 0;
} else if (rc == 0) {
*mode = true;
}
return rc;
}