X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Funzip.c;h=5c3d119f9eacc201719a631a5891a794825ae080;hb=8e680eb382eceb22f52cb923958ac652d693eb1a;hp=67a494c9d1d32a40eb747fd8f3c699354cb6285c;hpb=683f283e1328164c176618088c34408ea6c03cf7;p=virtualjaguar diff --git a/src/unzip.c b/src/unzip.c index 67a494c..5c3d119 100644 --- a/src/unzip.c +++ b/src/unzip.c @@ -1,7 +1,14 @@ // -// ZIP file support (mostly ripped from MAME) +// ZIP file support (mostly ripped from MAME--thx MAME team!) // // Added by James L. Hammons +// (C) 2010 Underground Software +// +// JLH = James L. Hammons +// +// Who When What +// --- ---------- ------------------------------------------------------------- +// JLH 01/16/2010 Created this log ;-) // #include @@ -826,7 +833,7 @@ static int equal_filename(const char * zipfile, const char * file) // // Pass the path to the zipfile and the name of the file within the zipfile. -// buf will be set to point to the uncompressed image of that zipped file. +// buf is set to point to the uncompressed image of that zipped file (preallocated by user!). // length will be set to the length of the uncompressed data. // int load_zipped_file(int pathtype, int pathindex, const char * zipfile, const char * filename, unsigned char ** buf, uint32_t * length)