mirror of https://github.com/GNOME/gimp.git
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:
parent
284f2d379d
commit
3ece2f7e4e
11
ChangeLog
11
ChangeLog
|
@ -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
|
||||
|
|
|
@ -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 *);
|
||||
|
|
|
@ -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 *);
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
#ifndef __GIMP_HISTOGRAM_F_H__
|
||||
#define __GIMP_HISTOGRAM_F_H__
|
||||
|
||||
typedef struct _GimpHistogram GimpHistogram;
|
||||
|
||||
#endif /* __GIMP_HISTOGRAM_F_H__ */
|
Loading…
Reference in New Issue