[Extractor-gtk-cvslog] SF.net SVN: extractor-gtk: [62] trunk/extractor
Extract files from unusual archive formats
Brought to you by:
someone-guy
From: <som...@us...> - 2008-02-22 22:18:22
|
Revision: 62 http://extractor-gtk.svn.sourceforge.net/extractor-gtk/?rev=62&view=rev Author: someone-guy Date: 2008-02-22 14:18:20 -0800 (Fri, 22 Feb 2008) Log Message: ----------- Sort alphabetically Modified Paths: -------------- trunk/extractor/Makefile trunk/extractor/extractor.c trunk/extractor/formats.h Modified: trunk/extractor/Makefile =================================================================== --- trunk/extractor/Makefile 2008-02-22 22:14:58 UTC (rev 61) +++ trunk/extractor/Makefile 2008-02-22 22:18:20 UTC (rev 62) @@ -1,12 +1,13 @@ CC=gcc CFLAGS=-Wall -g -O -MODULES=nwn.c \ - homeworld2.c \ - bloodrayne.c \ - xtre.c \ - wad.c \ - pak.c \ - generic.c \ +MODULES= \ + bloodrayne.c \ + generic.c \ + homeworld2.c \ + nwn.c \ + pak.c \ + wad.c \ + xtre.c \ all: extractor Modified: trunk/extractor/extractor.c =================================================================== --- trunk/extractor/extractor.c 2008-02-22 22:14:58 UTC (rev 61) +++ trunk/extractor/extractor.c 2008-02-22 22:18:20 UTC (rev 62) @@ -18,13 +18,13 @@ //! brief NULL-terminated array of supported formats const fmt_desc_t * const fmts[] = { + &bloodrayne_fmt, + &generic_fmt, + &homeworld2_fmt, &nwn_fmt, - &homeworld2_fmt, - &bloodrayne_fmt, + &pak_fmt, + &wad_fmt, &xtre_fmt, - &wad_fmt, - &pak_fmt, - &generic_fmt, NULL }; Modified: trunk/extractor/formats.h =================================================================== --- trunk/extractor/formats.h 2008-02-22 22:14:58 UTC (rev 61) +++ trunk/extractor/formats.h 2008-02-22 22:18:20 UTC (rev 62) @@ -24,12 +24,12 @@ int (*extract_file)(FILE *in, const file_t *file, FILE *out); ///< extract a file } fmt_desc_t; +extern const fmt_desc_t bloodrayne_fmt; +extern const fmt_desc_t generic_fmt; +extern const fmt_desc_t homeworld2_fmt; extern const fmt_desc_t nwn_fmt; -extern const fmt_desc_t homeworld2_fmt; -extern const fmt_desc_t bloodrayne_fmt; +extern const fmt_desc_t pak_fmt; +extern const fmt_desc_t wad_fmt; extern const fmt_desc_t xtre_fmt; -extern const fmt_desc_t wad_fmt; -extern const fmt_desc_t pak_fmt; -extern const fmt_desc_t generic_fmt; #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |