unpack PSP eboot.pbp to ISO file

This commit is contained in:
Martins Mozeiko
2017-11-05 23:10:13 -08:00
parent 4e84a279a8
commit 8cc1d686a2
8 changed files with 1000 additions and 183 deletions
+10
View File
@@ -0,0 +1,10 @@
#pragma once
#include <stdint.h>
void out_begin(const char* name, int zipped);
void out_end(void);
void out_add_folder(const char* path);
void out_begin_file(const char* name);
void out_end_file(void);
void out_write(const void* buffer, uint32_t size);