plug-ins/libgck/gck/Makefile.am removed.

2000-02-14  Michael Natterer  <mitch@gimp.org>

	* plug-ins/libgck/gck/Makefile.am
	* plug-ins/libgck/gck/gckimage.h: removed.
This commit is contained in:
Michael Natterer 2000-02-14 18:20:17 +00:00 committed by Michael Natterer
parent 2715fd15c8
commit 32bacee065
3 changed files with 5 additions and 58 deletions

View File

@ -1,3 +1,8 @@
2000-02-14 Michael Natterer <mitch@gimp.org>
* plug-ins/libgck/gck/Makefile.am
* plug-ins/libgck/gck/gckimage.h: removed.
2000-02-14 Michael Natterer <mitch@gimp.org>
* app/Makefile.am

View File

@ -11,7 +11,6 @@ libgck_la_SOURCES = \
gckinclude_HEADERS = \
gck.h \
gckcolor.h \
gckimage.h \
gcktypes.h \
gckui.h

View File

@ -1,57 +0,0 @@
/***************************************************************************/
/* GCK - The General Convenience Kit. Generally useful conveniece routines */
/* for GIMP plug-in writers and users of the GDK/GTK libraries. */
/* Copyright (C) 1996 Tom Bech */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* 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. */
/***************************************************************************/
#ifndef __GCKIMAGE_H__
#define _-GCKIMAGE_H__
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
guint width;
guint height;
unsigned long *indextab;
unsigned long *numbytes;
unsigned long *rowsize;
guchar *data;
} RGBImage;
RGBImage *RGB_image_new(guint width,guint height);
void RGB_image_destroy(RGBImage *image);
void RGB_image_fill(RGBImage *image,guchar red,guchar green,guchar blue);
void RGB_image_draw_rectangle(RGBImage *image,gint filled,gint x,gint y,gint width,
gint height,guchar red,guchar green,guchar blue);
void RGB_image_draw_line(RGBImage *image,int x1,int y1,int x2,int y2,
guchar red,guchar green,guchar blue);
void RGB_image_draw_arc(RGBImage *image,gint filled,int x,int y,guint radius,
guint angle1,guint angle2,guchar red,guchar green,guchar blue);
#ifdef __cplusplus
}
#endif
#endif