[Extractor-gtk-cvslog] SF.net SVN: extractor-gtk: [52] trunk/extractor
Extract files from unusual archive formats
Brought to you by:
someone-guy
From: <som...@us...> - 2008-02-19 20:42:43
|
Revision: 52 http://extractor-gtk.svn.sourceforge.net/extractor-gtk/?rev=52&view=rev Author: someone-guy Date: 2008-02-19 12:42:38 -0800 (Tue, 19 Feb 2008) Log Message: ----------- Do not use system-reserved names for header inclusion guards Modified Paths: -------------- trunk/extractor/formats.h trunk/extractor/helpers.h Modified: trunk/extractor/formats.h =================================================================== --- trunk/extractor/formats.h 2008-02-19 20:08:53 UTC (rev 51) +++ trunk/extractor/formats.h 2008-02-19 20:42:38 UTC (rev 52) @@ -1,5 +1,5 @@ -#ifndef _FORMATS_H -#define _FORMATS_H +#ifndef FORMATS_H +#define FORMATS_H //! struct describing a file in the archive typedef struct file_s { char *name; ///< filename Modified: trunk/extractor/helpers.h =================================================================== --- trunk/extractor/helpers.h 2008-02-19 20:08:53 UTC (rev 51) +++ trunk/extractor/helpers.h 2008-02-19 20:42:38 UTC (rev 52) @@ -1,5 +1,5 @@ -#ifndef _HELPERS_H -#define _HELPERS_H +#ifndef HELPERS_H +#define HELPERS_H char *read_cstring(FILE *f); uint16_t read_le16(FILE *f); uint32_t read_le32(FILE *f); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |