new file containing typedef for GimpHistogram.

* app/gimphistogramF.h: new file containing typedef for
 	GimpHistogram.

	* app/gimphistogram.h: moved GimpHistogram typedef to
 	gimphistogramF.h

	* app/lut_funcs.h: include gimphistogramF.h again now that the
 	file actually exists.
This commit is contained in:
jaycox 1999-04-10 04:13:42 +00:00
parent 284f2d379d
commit 3ece2f7e4e
4 changed files with 19 additions and 4 deletions

View File

@ -1,3 +1,14 @@
1999-04-09 Jay Cox <jaycox@earthlink.net>
* app/gimphistogramF.h: new file containing typedef for
GimpHistogram.
* app/gimphistogram.h: moved GimpHistogram typedef to
gimphistogramF.h
* app/lut_funcs.h: include gimphistogramF.h again now that the
file actually exists.
Fri Apr 9 18:58:41 1999 Raph Levien <raph@gimp.org>
* app/lut_funcs.h: changed the include to "gimphistogram.h" rather

View File

@ -23,6 +23,7 @@
#include "pixel_region.h"
#include "gimpdrawable.h"
#include "gimphistogramF.h"
#define HISTOGRAM_VALUE 0
#define HISTOGRAM_RED 1
@ -30,8 +31,6 @@
#define HISTOGRAM_BLUE 3
#define HISTOGRAM_ALPHA 4
typedef struct _GimpHistogram GimpHistogram;
GimpHistogram *gimp_histogram_new ();
void gimp_histogram_free (GimpHistogram *);

View File

@ -23,6 +23,7 @@
#include "pixel_region.h"
#include "gimpdrawable.h"
#include "gimphistogramF.h"
#define HISTOGRAM_VALUE 0
#define HISTOGRAM_RED 1
@ -30,8 +31,6 @@
#define HISTOGRAM_BLUE 3
#define HISTOGRAM_ALPHA 4
typedef struct _GimpHistogram GimpHistogram;
GimpHistogram *gimp_histogram_new ();
void gimp_histogram_free (GimpHistogram *);

6
app/gimphistogramF.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef __GIMP_HISTOGRAM_F_H__
#define __GIMP_HISTOGRAM_F_H__
typedef struct _GimpHistogram GimpHistogram;
#endif /* __GIMP_HISTOGRAM_F_H__ */