plug-ins/bmp/* plug-ins/fits/* renamed files.

2008-03-24  Michael Natterer  <mitch@gimp.org>

	* plug-ins/bmp/*
	* plug-ins/fits/*
	* plug-ins/sgi/*: renamed files.


svn path=/trunk/; revision=25208
This commit is contained in:
Michael Natterer 2008-03-24 22:07:14 +00:00 committed by Michael Natterer
parent 4f9d5c3958
commit d888241976
12 changed files with 46 additions and 40 deletions

View File

@ -1,3 +1,9 @@
2008-03-24 Michael Natterer <mitch@gimp.org>
* plug-ins/bmp/*
* plug-ins/fits/*
* plug-ins/sgi/*: renamed files.
2008-03-24 Mukund Sivaraman <muks@mukund.org>
* plug-ins/common/mng.c:

View File

@ -21,8 +21,8 @@ libexec_PROGRAMS = bmp
bmp_SOURCES = \
bmp.c \
bmp.h \
bmpread.c \
bmpwrite.c
bmp-read.c \
bmp-write.c
INCLUDES = \
-I$(top_srcdir) \

View File

@ -20,8 +20,8 @@ libexec_PROGRAMS = fits
fits_SOURCES = \
fits.c \
fitsrw.c \
fitsrw.h
fits-io.c \
fits-io.h
INCLUDES = \
-I$(top_srcdir) \

View File

@ -92,7 +92,7 @@
#include <glib.h>
#include <glib/gstdio.h>
#include "fitsrw.h"
#include "fits-io.h"
/* Declaration of local funtions */

View File

@ -45,7 +45,7 @@
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>
#include "fitsrw.h"
#include "fits-io.h"
#include "libgimp/stdplugins-intl.h"

View File

@ -19,9 +19,9 @@ libexecdir = $(gimpplugindir)/plug-ins
libexec_PROGRAMS = sgi
sgi_SOURCES = \
sgi.c \
sgi.h \
sgilib.c
sgi.c \
sgi-lib.c \
sgi-lib.h
INCLUDES = \
-I$(top_srcdir) \

View File

@ -104,9 +104,10 @@
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <glib/gstdio.h>
#include "sgi.h"
#include "sgi-lib.h"
/*
@ -929,8 +930,3 @@ write_rle16(sgi_t *sgip, /* I - SGI image to write to */
else
return (2 * length);
}
/*
* End of "$Id$".
*/

View File

@ -16,19 +16,12 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Revision History:
*
* see ChangeLog
*/
#ifndef _SGI_H_
# define _SGI_H_
# ifdef __cplusplus
extern "C" {
# endif
#ifndef __SGI_LIB_H__
#define __SGI_LIB_H__
G_BEGIN_DECLS
/*
* Constants...
@ -72,19 +65,30 @@ typedef struct
* Prototypes...
*/
extern int sgiClose(sgi_t *sgip);
extern int sgiGetRow(sgi_t *sgip, unsigned short *row, int y, int z);
extern sgi_t *sgiOpen(char *filename, int mode, int comp, int bpp,
int xsize, int ysize, int zsize);
extern sgi_t *sgiOpenFile(FILE *file, int mode, int comp, int bpp,
int xsize, int ysize, int zsize);
extern int sgiPutRow(sgi_t *sgip, unsigned short *row, int y, int z);
extern int sgiClose (sgi_t *sgip);
extern int sgiGetRow (sgi_t *sgip,
unsigned short *row,
int y,
int z);
extern sgi_t *sgiOpen (char *filename,
int mode,
int comp,
int bpp,
int xsize,
int ysize,
int zsize);
extern sgi_t *sgiOpenFile (FILE *file,
int mode,
int comp,
int bpp,
int xsize,
int ysize,
int zsize);
extern int sgiPutRow (sgi_t *sgip,
unsigned short *row,
int y,
int z);
# ifdef __cplusplus
}
# endif
#endif /* !_SGI_H_ */
G_END_DECLS
/*
* End of "$Id$".
*/
#endif /* !__SGI_LIB_H__ */

View File

@ -36,7 +36,7 @@
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>
#include "sgi.h" /* SGI image library definitions */
#include "sgi-lib.h"
#include "libgimp/stdplugins-intl.h"