craigix
Mega GP Mania
Can anyone recommend a program or lib for unzipping files to /tmp/ which supports dirs.
Thanks,
Craig
Thanks,
Craig
Can anyone recommend a program or lib for unzipping files to /tmp/ which supports dirs.
Thanks,
Craig
I don't have access to my GP2x at the moment, but isn't there zlib.so? /usr/include/zlib.h.I'm looking for something i can use on the gp2x, i'm guessing such a lib exists as several emus support zip files.
I don't have access to my GP2x at the moment, but isn't there zlib.so? /usr/include/zlib.h.I'm looking for something i can use on the gp2x, i'm guessing such a lib exists as several emus support zip files.
Yes, just had a look at the GPH toolchain dirs, the GP2x has libz.so, so ......../include/zlib.hI don't have access to my GP2x at the moment, but isn't there zlib.so? /usr/include/zlib.h.I'm looking for something i can use on the gp2x, i'm guessing such a lib exists as several emus support zip files.
mkdir /tmp/somefolder
mount -o loop -t iso9660 ./myfile.iso /tmp/somefolder
system("mkdir /tmp/somefolder");
system("mount -o loop -t iso9660 ./myfile.iso /tmp/somefolder");
chdir("/tmp/somefolder/");