Parse PE icons

This commit is contained in:
momo5502
2025-04-30 16:52:53 +02:00
parent f6fa53a4cd
commit d20ffbb630
6 changed files with 315 additions and 8 deletions

View File

@@ -82,6 +82,10 @@ export class Filesystem {
this.idbfs.FS.writeFile(file.name, buffer);
}
readFile(file: string): Uint8Array {
return this.idbfs.FS.readFile(file);
}
async storeFiles(files: FileWithData[]) {
files.forEach((f) => {
this._storeFile(f);